Browse Source

Minor - letter uppercase change in error msg

ywarnier 14 years ago
parent
commit
78918605af
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/inc/lib/main_api.lib.php

+ 1 - 1
main/inc/lib/main_api.lib.php

@@ -3073,7 +3073,7 @@ function rmdirr($dirname) {
     if (is_file($dirname) || is_link($dirname)) {
         $res = unlink($dirname);
         if ($res === false) {
-            error_log(__FILE__.' line '.__LINE__.': '.((bool)ini_get('track_errors') ? $php_errormsg : 'error not recorded because track_errors is off in your php.ini'), 0);
+            error_log(__FILE__.' line '.__LINE__.': '.((bool)ini_get('track_errors') ? $php_errormsg : 'Error not recorded because track_errors is off in your php.ini'), 0);
         }
         return $res;
     }