mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-05 04:52:47 +02:00
Merged revision(s) 26904 from branches/2.6:
bug 2989: Deprecated: preg_replace(): The /e modifier is deprecated git-svn-id: http://piwigo.org/svn/trunk@26905 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -810,14 +810,18 @@ SELECT id, uppercats, site_id
|
||||
$categories = array_from_query($query);
|
||||
|
||||
// filling $cat_fulldirs
|
||||
$cat_dirs_callback = create_function('$m', 'global $cat_dirs; return $cat_dirs[$m[1]];');
|
||||
|
||||
$cat_fulldirs = array();
|
||||
foreach ($categories as $category)
|
||||
{
|
||||
$uppercats = str_replace(',', '/', $category['uppercats']);
|
||||
$cat_fulldirs[$category['id']] = $galleries_url[$category['site_id']];
|
||||
$cat_fulldirs[$category['id']].= preg_replace('/(\d+)/e',
|
||||
"\$cat_dirs['$1']",
|
||||
$uppercats);
|
||||
$cat_fulldirs[$category['id']].= preg_replace_callback(
|
||||
'/(\d+)/',
|
||||
$cat_dirs_callback,
|
||||
$uppercats
|
||||
);
|
||||
}
|
||||
|
||||
return $cat_fulldirs;
|
||||
|
||||
Reference in New Issue
Block a user