From b5dee82b856d48026ac8c72a7e9cd68533a33b17 Mon Sep 17 00:00:00 2001 From: matt Date: Fri, 25 Nov 2005 09:12:22 +0000 Subject: [PATCH] Better error, fixes #1934 git-svn-id: http://svn.automattic.com/wordpress/trunk@3212 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 191c7b757..a6195ba7b 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; } }