Changeset 781 for trunk/Application
- Timestamp:
- Jan 8, 2016, 11:00:11 PM (9 years ago)
- Location:
- trunk/Application
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/System.php
r779 r781 200 200 { 201 201 $Command = $this->CommandLine[$argv[1]]; 202 if(is_string($Command['Callback'][0])) 203 { 204 $Class = new $Command['Callback'][0]($this); 205 $Output = $Class->$Command['Callback'][1](); 206 } else $Output = call_user_func($Command['Callback']); 207 echo($Output); 208 } else echo('Command "'.$argv[1].'" not supported.'."\n"); 209 } else echo('No command was given as parameter'."\n"); 202 $Output = call_user_func($Command['Callback'], $argv); 203 } else $Output = 'Command "'.$argv[1].'" not supported.'."\n"; 204 } else $Output = 'No command was given as parameter'."\n"; 205 echo($Output); 210 206 } 211 207 -
trunk/Application/Version.php
r774 r781 1 1 <?php 2 2 3 $Revision = 7 74; // Subversion revision3 $Revision = 781; // Subversion revision 4 4 $DatabaseRevision = 770; // SQL structure revision 5 5 $ReleaseTime = strtotime('2016-01-01');
Note:
See TracChangeset
for help on using the changeset viewer.