diff options
Diffstat (limited to 'bin/msgimport.sh')
-rwxr-xr-x | bin/msgimport.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/msgimport.sh b/bin/msgimport.sh index fa5678cec..a5161e026 100755 --- a/bin/msgimport.sh +++ b/bin/msgimport.sh @@ -1,5 +1,8 @@ -#!/usr/bin/php +#!/usr/bin/env php <?php +if (php_sapi_name() != 'cli') { + die('Not on the "shell" (php-cli).'); +} define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' ); ini_set('memory_limit', -1); @@ -146,4 +149,4 @@ else print "IMAP login failed.\n"; } -?>
\ No newline at end of file +?> |