diff options
author | rub <rub@piwigo.org> | 2008-10-25 21:31:30 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2008-10-25 21:31:30 +0000 |
commit | abe030444b21dd919ef63da32b4aac09a8c14729 (patch) | |
tree | 6baaeff8191b5db79738a6adaaee579ccef25d64 /upgrade.php | |
parent | 31b633dd1bdbf9ae19123a56313dccf542bec2d9 (diff) |
Reintroduce c13y_upgrade remove on r2754
git-svn-id: http://piwigo.org/svn/trunk@2808 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | upgrade.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/upgrade.php b/upgrade.php index aa5fc06cb..8b5e9eda8 100644 --- a/upgrade.php +++ b/upgrade.php @@ -298,6 +298,13 @@ if you encounter any problem.' $template->assign('infos', $page['infos']); invalidate_user_cache(); + + $query = ' +REPLACE INTO '.PLUGINS_TABLE.' + (id, state) + VALUES (\'c13y_upgrade\', \'active\') +;'; + pwg_query($query); } else { |