diff options
Diffstat (limited to 'scripts/sitemap.php')
-rwxr-xr-x | scripts/sitemap.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/sitemap.php b/scripts/sitemap.php index ee5d33e1e..f8c392146 100755 --- a/scripts/sitemap.php +++ b/scripts/sitemap.php @@ -377,11 +377,11 @@ function write_file($path, $data) } if (($fh_out = fopen($path,'w')) === false) { - error("Could not open $path for writing."); + error("couldn't open $path for writing."); } if (fwrite($fh_out, $data) === false) { - error("Could not write to $path."); + error("couldn't write to $path."); } } |