diff options
author | plegall <plg@piwigo.org> | 2012-12-04 12:47:45 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2012-12-04 12:47:45 +0000 |
commit | 94f17094cbdfb76e71236f949b9dc32d8606c7e9 (patch) | |
tree | c6fd3ddbea1a630d94d870140d5a01f1f5633cd7 /install | |
parent | 5ace1345740d61e3a6fd7500b79a95b772a8b737 (diff) |
feature 2614: on a upgraded gallery, nb_categories_page is set to 50 instead
of the default value 12 for a new installation.
git-svn-id: http://piwigo.org/svn/trunk@19281 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | install/db/131-database.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/db/131-database.php b/install/db/131-database.php index 0af7771e9..72d68a6f9 100644 --- a/install/db/131-database.php +++ b/install/db/131-database.php @@ -28,8 +28,8 @@ if (!defined('PHPWG_ROOT_PATH')) $upgrade_description = 'add "nb_categories_page" parameter'; -conf_update_param('nb_categories_page', '12'); +conf_update_param('nb_categories_page', '50'); echo "\n".$upgrade_description."\n"; -?>
\ No newline at end of file +?> |