diff --git a/include/admin/upgrader.inc.php b/include/admin/upgrader.inc.php index d24672cf..d4129251 100644 --- a/include/admin/upgrader.inc.php +++ b/include/admin/upgrader.inc.php @@ -266,6 +266,10 @@ $tasks = array(array('version' => '0.5.1', 'arguments' => array(substr($serendipity['serendipityPath'], 0, -1), $dead_files_202, array('internals'), true), 'desc' => 'The following old dead files will be removed from your system.
' . implode(', ', $dead_files_202) . '
'), + array('version' => '2.2.0-beta2', + 'function' => 'serendipity_upgrader_rewriteFeedIcon', + 'title' => 'Update .htaccess file', + 'desc' => 'Adds a new "documentation.*.html" rewrite rule exception to allow calling plugin documentation URLs.', ); /* Fetch SQL files which needs to be run */ diff --git a/serendipity_config.inc.php b/serendipity_config.inc.php index 589a89d2..d29a27fa 100644 --- a/serendipity_config.inc.php +++ b/serendipity_config.inc.php @@ -47,7 +47,7 @@ if (defined('USE_MEMSNAP')) { } // The version string -$serendipity['version'] = '2.2.0-beta1'; +$serendipity['version'] = '2.2.0-beta2'; // Setting this to 'false' will enable debugging output. All alpha/beta/cvs snapshot versions will emit debug information by default. To increase the debug level (to enable Smarty debugging), set this flag to 'debug'.