Details
Description
handling of CLI scripts is very chaotic at the moment - some of them abut FULLME=='cron', other pollute the codebase with tons of IFs, etc...
Solution:
- in setup.php define CLI_SCRIPT=true|false
- replace FULLME hacks with if (CLI_SCRIPT)
Issue Links
| This issue has been marked as being related by: | ||||
| MDL-17754 | Session improvements and related rewrites |
|
|
|
Activity
- All
- Comments
- History
- Activity
- Source
- Test Sessions
added new define CLI_SCRIPT that identifies all CLI scripts + cron (cli scripts do not have session and do not like HTML in output and are executed from command line, cron is an exception)