diff options
author | plegall <plg@piwigo.org> | 2010-05-08 19:22:29 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-05-08 19:22:29 +0000 |
commit | eb0aec97524af79ced247393fac94ed4d14baf80 (patch) | |
tree | e0839f33af972cf307864d6153692432affdcaae /include/common.inc.php | |
parent | a34af69677b6b7b3d1a7c551a0bb5ce5a9441d3c (diff) |
bug 1652 fixed: json_encode function is required for admin.php?fckb_tags=1
(used in the new tags widget)
git-svn-id: http://piwigo.org/svn/trunk@6126 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/common.inc.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/common.inc.php b/include/common.inc.php index 878dcda12..0f1160a54 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -81,6 +81,7 @@ foreach( array( 'array_intersect_key', //PHP 5 >= 5.1.0RC1 'hash_hmac', //(hash) - enabled by default as of PHP 5.1.2 'preg_last_error', // PHP 5 >= 5.2.0 + 'json_encode', // PHP 5 >= 5.2.0 ) as $func) { if (!function_exists($func)) |