Browse Source

Fixed bug particularly effecting new installations

pull/40/head
Savetheinternet 13 years ago
parent
commit
c13ce6a35c
  1. 2
      inc/functions.php

2
inc/functions.php

@ -22,7 +22,7 @@
}
if(!isset($__version))
$__version = trim(file_get_contents('.installed'));
$__version = file_exists('.installed') ? trim(file_get_contents('.installed')) : false;
$config['version'] = $__version;
if($config['debug']) {

Loading…
Cancel
Save