From 1761ed4b6be670f1d6cea3e7de494ecefc0b8724 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Fri, 25 Nov 2005 09:12:22 +0000 Subject: [PATCH] Better error, fixes #1934 git-svn-id: https://develop.svn.wordpress.org/trunk@3212 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-content/plugins/wp-db-backup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-content/plugins/wp-db-backup.php b/wp-content/plugins/wp-db-backup.php index 191c7b7579..a6195ba7b9 100644 --- a/wp-content/plugins/wp-db-backup.php +++ b/wp-content/plugins/wp-db-backup.php @@ -739,7 +739,7 @@ class wpdbBackup { if ( @ mkdir( ABSPATH . $this->backup_dir) ) { @ chmod( ABSPATH . $this->backup_dir, $dir_perms); } else { - echo '

' . __('WARNING: Your wp-content directory is NOT writable! We can not create the backup directory.', 'wp-db-backup') . '
' . ABSPATH . "

"; + echo '

' . __('WARNING: Your wp-content directory is NOT writable! We can not create the backup directory.', 'wp-db-backup') . '
' . ABSPATH . $this->backup_dir . "

"; $WHOOPS = TRUE; } }