fix some language issues

This commit is contained in:
Grand Philippe
2012-08-23 09:27:01 +02:00
parent 3cdb2ba8e1
commit b015c7799a
6 changed files with 15 additions and 15 deletions

View File

@@ -19,7 +19,7 @@
/**
* \file dev/examples/create_user.php
* \brief This file is an example for a command line script
* \author Put author name here
* \author Put author's name here
* \remarks Put here some comments
*/
@@ -29,7 +29,7 @@ $path=dirname(__FILE__).'/';
// Test if batch mode
if (substr($sapi_type, 0, 3) == 'cgi') {
echo "Error: You ar usingr PH for CGI. To execute ".$script_file." from command line, you must use PHP for CLI mode.\n";
echo "Error: You are using PHP for CGI. To execute ".$script_file." from command line, you must use PHP for CLI mode.\n";
exit;
}