Changeset 2236
- Timestamp:
- 11/26/10 11:51:37 (18 months ago)
- Files:
-
- 1 modified
-
branches/1.5/Hotaru.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.5/Hotaru.php
r2176 r2236 26 26 class Hotaru 27 27 { 28 protected $version = "1. 4.1"; // Hotaru CMS version28 protected $version = "1.5"; // Hotaru CMS version 29 29 protected $isDebug = false; // show db queries and page loading time 30 30 protected $isAdmin = false; // flag to tell if we are in Admin or not … … 73 73 if (!defined('BASE')) { 74 74 define("BASE", dirname(__FILE__). '/'); 75 define("CACHE", dirname(__FILE__).'/cache/'); 75 76 define("ADMIN", dirname(__FILE__).'/admin/'); 76 77 define("INSTALL", dirname(__FILE__).'/install/'); … … 82 83 define("PLUGINS", dirname(__FILE__).'/content/plugins/'); 83 84 define("ADMIN_THEMES", dirname(__FILE__).'/content/admin_themes/'); 85 define("SITEURL", BASEURL); 84 86 } 85 87 … … 1464 1466 { 1465 1467 $maintenance = new Maintenance(); 1466 $maintenance->deleteFiles($dir);1468 return $maintenance->deleteFiles($dir); 1467 1469 } 1468 1470