Changeset 150
Legend:
- Unmodified
- Added
- Removed
-
trunk/CHANGELOG
r149 r150 13 13 14 14 * Dropped requirement for the Ctype library [ticket:12] 15 16 * Fixed a bug where finished items were still trying to be read despite 17 the display of finished items being disabled. [ticket:15] 15 18 16 19 1.8 -
trunk/index.php
r149 r150 143 143 $x = false; 144 144 145 if ( file_exists('completed.xml')) {145 if (isset($config['showfinished']) && $config['showfinished'] && file_exists('completed.xml')) { 146 146 $xmlstring = file_get_contents('completed.xml'); 147 147 if ($xmlstring) {
