Fix function_exists(url_safe)

This commit is contained in:
bevz 2016-12-01 14:26:15 +03:00 committed by Franco Fichtner
parent 0da1e0ed9c
commit 26a0ed3b53
3 changed files with 3 additions and 3 deletions

View file

@ -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)) {

View file

@ -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)) {

View file

@ -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)) {