diff options
Diffstat (limited to 'actions/admin/upgrade.php')
-rw-r--r-- | actions/admin/upgrade.php | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/actions/admin/upgrade.php b/actions/admin/upgrade.php deleted file mode 100644 index 334e9588e..000000000 --- a/actions/admin/upgrade.php +++ /dev/null @@ -1,48 +0,0 @@ -<?php -/** - * Tidypics upgrade action - */ -require_once "{$CONFIG->pluginspath}tidypics/version.php"; - -$local_version = get_plugin_setting('version', 'tidypics'); - -if ($version <= $local_version) { - register_error('No upgrade required'); - forward($_SERVER['HTTP_REFERER']); -} - -set_time_limit(0); - -$base_dir = $CONFIG->pluginspath . 'tidypics/upgrades'; - -// taken from engine/lib/version.php -if ($handle = opendir($base_dir)) { - $upgrades = array(); - - while ($updatefile = readdir($handle)) { - // Look for upgrades and add to upgrades list - if (!is_dir("$base_dir/$updatefile")) { - if (preg_match('/^([0-9]{10})\.(php)$/', $updatefile, $matches)) { - $plugin_version = (int) $matches[1]; - if ($plugin_version > $local_version) { - $upgrades[] = "$base_dir/$updatefile"; - } - } - } - } - - // Sort and execute - asort($upgrades); - - if (sizeof($upgrades) > 0) { - foreach ($upgrades as $upgrade) { - include($upgrade); - } - } -} - -set_plugin_setting('version', $version, 'tidypics'); - -system_message("Tidypics has been upgraded"); - -forward($_SERVER['HTTP_REFERER']); |