mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
Fix function_exists(url_safe)
This commit is contained in:
parent
0da1e0ed9c
commit
26a0ed3b53
3 changed files with 3 additions and 3 deletions
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
/* BEGIN remove this in 17.1: provide compat for newer plugin on stock 16.7 */
|
||||
require_once 'util.inc';
|
||||
if (!function_exists(url_safe)) {
|
||||
if (!function_exists('url_safe')) {
|
||||
function url_safe($format, $args = array())
|
||||
{
|
||||
if (!is_array($args)) {
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
/* BEGIN remove this in 17.1: provide compat for newer plugin on stock 16.7 */
|
||||
require_once 'util.inc';
|
||||
if (!function_exists(url_safe)) {
|
||||
if (!function_exists('url_safe')) {
|
||||
function url_safe($format, $args = array())
|
||||
{
|
||||
if (!is_array($args)) {
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
/* BEGIN remove this in 17.1: provide compat for newer plugin on stock 16.7 */
|
||||
require_once 'util.inc';
|
||||
if (!function_exists(url_safe)) {
|
||||
if (!function_exists('url_safe')) {
|
||||
function url_safe($format, $args = array())
|
||||
{
|
||||
if (!is_array($args)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue