diff options
| author | Nick Palmer <nick@sluggardy.net> | 2007-07-09 21:10:55 +0000 |
|---|---|---|
| committer | Nick Palmer <nick@sluggardy.net> | 2007-07-09 21:10:55 +0000 |
| commit | 296b0e2ea949db991214dc5f2048d941e6315cf3 (patch) | |
| tree | 1443b4665cf5e5af418999be5d573fb67e3cd203 /list_blogs.php | |
| parent | 52ec6fd9b4d298edcf78a1e2c305b8791c5efe6c (diff) | |
| download | blogs-296b0e2ea949db991214dc5f2048d941e6315cf3.tar.gz blogs-296b0e2ea949db991214dc5f2048d941e6315cf3.tar.bz2 blogs-296b0e2ea949db991214dc5f2048d941e6315cf3.zip | |
Fix warning when deleting a blog since posts are not deleted.
Fixup wp-migrate.php script to support multiple runs and allow for eventual redicrect script.
Diffstat (limited to 'list_blogs.php')
| -rw-r--r-- | list_blogs.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/list_blogs.php b/list_blogs.php index 1032609..d708d2b 100644 --- a/list_blogs.php +++ b/list_blogs.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_blogs/list_blogs.php,v 1.15 2007/04/25 16:17:56 wjames5 Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_blogs/list_blogs.php,v 1.16 2007/07/09 21:10:55 nickpalmer Exp $ * @package blogs * @subpackage functions */ @@ -29,7 +29,7 @@ if( $gContent->isValid() && isset($_REQUEST["remove"])) { } elseif( empty( $_REQUEST['confirm'] ) ) { $formHash['remove'] = $_REQUEST["remove"]; $formHash['blog_id'] = $gContent->mBlogId; - $gBitSystem->confirmDialog( $formHash, array( 'warning' => 'Are you sure you want to delete the blog '.$gContent->getTitle().'? All posts will be permanently deleted.', 'error' => 'This cannot be undone!' ) ); + $gBitSystem->confirmDialog( $formHash, array( 'warning' => 'Are you sure you want to delete the blog '.$gContent->getTitle().'?', 'error' => 'This cannot be undone!' ) ); } else { $gContent->expunge(); } |
