Changeset 11451
- Timestamp:
- 02/18/11 16:26:03 (2 years ago)
- Files:
-
- modules/branches/2.9/framework/install.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.9/framework/install.php
r11446 r11451 21 21 function outn($text) { 22 22 echo $text; 23 } 24 } 25 26 if (! function_exists('error')) { 27 function error($text) { 28 echo "[ERROR] ".$text."<br>"; 29 } 30 } 31 32 if (! function_exists('fatal')) { 33 function fatal($text) { 34 echo "[FATAL] ".$text."<br>"; 35 exit(1); 36 } 37 } 38 39 if (! function_exists('debug')) { 40 function debug($text) { 41 global $debug; 42 43 if ($debug) echo "[DEBUG-preDB] ".$text."<br>"; 23 44 } 24 45 }
