summaryrefslogtreecommitdiff
path: root/crosspost.php
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2009-05-04 09:48:42 +0000
committerLester Caine <lester@lsces.co.uk>2009-05-04 09:48:42 +0000
commit628ec25aac26434376f4e2b98cede6e191d1a09d (patch)
tree2f63f2b820b919eefd518adfdafbc8b7bb1d847b /crosspost.php
parent30dc565e59b5ace1d8b8f9b384ecef3c997d8f6b (diff)
downloadblogs-628ec25aac26434376f4e2b98cede6e191d1a09d.tar.gz
blogs-628ec25aac26434376f4e2b98cede6e191d1a09d.tar.bz2
blogs-628ec25aac26434376f4e2b98cede6e191d1a09d.zip
Cleared up error report from Eclipse - suspect that the code is still broken though.
Diffstat (limited to 'crosspost.php')
-rw-r--r--crosspost.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/crosspost.php b/crosspost.php
index d92d7a5..adf3d24 100644
--- a/crosspost.php
+++ b/crosspost.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_blogs/crosspost.php,v 1.7 2008/09/19 01:34:36 laetzer Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_blogs/crosspost.php,v 1.8 2009/05/04 09:48:42 lsces Exp $
* @package blogs
* @subpackage functions
*
@@ -43,7 +43,7 @@ if( !empty( $_REQUEST['action']) && ($_REQUEST['action'] == 'remove') && $gConte
$feedback['error'] = $gContent->mErrors;
}
}else{
- $gBitSystem->setBrowserTitle( tra('Confirm removal of') . ' ' . $gContent->getTitle(); // crossposting from Blog \''.'addblognamehere'.'\'' );
+ $gBitSystem->setBrowserTitle( tra('Confirm removal of') . ' ' . $gContent->getTitle()); // crossposting from Blog \''.'addblognamehere'.'\'' );
$formHash['remove'] = TRUE;
$formHash['action'] = 'remove';
$formHash['post_id'] = $_REQUEST['post_id'];
@@ -51,7 +51,7 @@ if( !empty( $_REQUEST['action']) && ($_REQUEST['action'] == 'remove') && $gConte
$msgHash = array(
'label' => 'Remove Crossposting of Blog Post:',
'confirm_item' => $gContent->getTitle(),
- 'warning' => tra('This will remove the crossposting of the above blog post.') // from the blog \''.'addblognamehere'.'\'),
+ 'warning' => tra('This will remove the crossposting of the above blog post.'), // from the blog \''.'addblognamehere'.'\'),
'error' => tra('This cannot be undone!'),
);
$gBitSystem->confirmDialog( $formHash, $msgHash );