1
0

fix wrong upgrade removal of dead files with 2.0.1 update

This commit is contained in:
Ian
2015-03-13 12:47:20 +01:00
parent 1062145b49
commit 7c7dc58665
2 changed files with 15 additions and 11 deletions

View File

@@ -3,25 +3,25 @@
Version 2.1 ()
------------------------------------------------------------------------
* Fix: the syndication plugin now always uses absolute links for
the subtome-button
* Fix: the syndication plugin now always uses absolute links for
the subtome-button
* Fix: the syndication plugin links subtome correctly to the atom
feed when he is activated with the rss feed
* Fix: the syndication plugin links subtome correctly to the atom
feed when he is activated with the rss feed
* Issue #285: Add "none" as possible value for the xml-icon in
the syndication plugin, to enable plain links
* Issue #285: Add "none" as possible value for the xml-icon in
the syndication plugin, to enable plain links
* Issue #238: When creating/renaming media directories, replace
special characters with the same i18n rules like Permalinks are
created, renaming umlauts etc.
* Add "update all"-button to plugin update page
* Add "update all"-button to plugin update page
* Issue #234: Granular options to force backend popups for certain
areas
* Introduce serendipity['ajax'] to detect incoming ajax requests
* Introduce serendipity['ajax'] to detect incoming ajax requests
and react accordingly in core and plugins
* Issue #248: Add $serendipity['forceBase64']=true option (can be set
@@ -39,6 +39,10 @@ Version 2.1 ()
Version 2.0.2 ()
------------------------------------------------------------------------
* fix wrong upgrade removal of dead files with 2.0.1 update
Version 2.0.1 (March 12th, 2015)
------------------------------------------------------------------------

View File

@@ -243,10 +243,10 @@ $tasks = array(array('version' => '0.5.1',
'title' => 'Update of .htaccess file',
'desc' => 'Changes were made to the .htaccess file to allow for new patterns, it will be recreated. If you manually modified the file, make sure your modification are in place afterwards.'),
array('version' => '2.0.1',
array('version' => '2.0.2',
'function' => 'serendipity_removeDeadFiles_SPL',
'title' => 'Removal of obsolete and still resting files in 2.0.0',
'arguments' => array($serendipity['serendipityPath'] . 'htmlarea', $dead_files_rest, array('internals'), true),
'title' => 'Removal of obsolete and still resting files in 2.0',
'arguments' => array(substr($serendipity['serendipityPath'], 0, -1), $dead_files_rest, null, true),
'desc' => 'The following dead files will additionally be removed from "/" and "htmlarea".<br /><pre>' . implode(', ', $dead_files_rest) . '</pre>'),