[pLog-svn] r5337 - plog/branches/lifetype-1.2/class/action/admin

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Tue Apr 24 05:09:16 EDT 2007


Author: jondaley
Date: 2007-04-24 05:09:15 -0400 (Tue, 24 Apr 2007)
New Revision: 5337

Modified:
   plog/branches/lifetype-1.2/class/action/admin/adminchangecommentsstatusaction.class.php
   plog/branches/lifetype-1.2/class/action/admin/adminchangetrackbacksstatusaction.class.php
   plog/branches/lifetype-1.2/class/action/admin/admindeletecommentaction.class.php
   plog/branches/lifetype-1.2/class/action/admin/admindeletetrackbackaction.class.php
   plog/branches/lifetype-1.2/class/action/admin/admineditcommentsaction.class.php
   plog/branches/lifetype-1.2/class/action/admin/adminpoststatsaction.class.php
   plog/branches/lifetype-1.2/class/action/admin/adminupdatepostaction.class.php
Log:
error_fetching_post was a duplicate of error_fetching_article

Modified: plog/branches/lifetype-1.2/class/action/admin/adminchangecommentsstatusaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/adminchangecommentsstatusaction.class.php	2007-04-24 09:02:16 UTC (rev 5336)
+++ plog/branches/lifetype-1.2/class/action/admin/adminchangecommentsstatusaction.class.php	2007-04-24 09:09:15 UTC (rev 5337)
@@ -66,7 +66,7 @@
 				$article = $articles->getBlogArticle( $this->_articleId, $this->_blogInfo->getId());
 				if( !$article ) {
 					$this->_view = new AdminArticleCommentsListView( $this->_blogInfo );
-					$this->_view->setErrorMessage( $this->_locale->tr("error_fetching_post" ));
+					$this->_view->setErrorMessage( $this->_locale->tr("error_fetching_article" ));
 					$this->setCommonData();
 					
 					return false;

Modified: plog/branches/lifetype-1.2/class/action/admin/adminchangetrackbacksstatusaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/adminchangetrackbacksstatusaction.class.php	2007-04-24 09:02:16 UTC (rev 5336)
+++ plog/branches/lifetype-1.2/class/action/admin/adminchangetrackbacksstatusaction.class.php	2007-04-24 09:09:15 UTC (rev 5337)
@@ -66,7 +66,7 @@
 				$article = $articles->getBlogArticle( $this->_articleId, $this->_blogInfo->getId());
 				if( !$article ) {
 					$this->_view = new AdminArticleTrackbacksListView( $this->_blogInfo );
-					$this->_view->setErrorMessage( $this->_locale->tr("error_fetching_post" ));
+					$this->_view->setErrorMessage( $this->_locale->tr("error_fetching_article" ));
 					$this->setCommonData();
 					
 					return false;

Modified: plog/branches/lifetype-1.2/class/action/admin/admindeletecommentaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/admindeletecommentaction.class.php	2007-04-24 09:02:16 UTC (rev 5336)
+++ plog/branches/lifetype-1.2/class/action/admin/admindeletecommentaction.class.php	2007-04-24 09:09:15 UTC (rev 5337)
@@ -78,7 +78,7 @@
 				$article = $articles->getBlogArticle( $this->_articleId, $this->_blogInfo->getId());
 				if( !$article ) {
 					$this->_view = new AdminArticleCommentsListView( $this->_blogInfo );
-					$this->_view->setErrorMessage( $this->_locale->tr("error_fetching_post" ));
+					$this->_view->setErrorMessage( $this->_locale->tr("error_fetching_article" ));
 					$this->setCommonData();
 					
 					return false;

Modified: plog/branches/lifetype-1.2/class/action/admin/admindeletetrackbackaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/admindeletetrackbackaction.class.php	2007-04-24 09:02:16 UTC (rev 5336)
+++ plog/branches/lifetype-1.2/class/action/admin/admindeletetrackbackaction.class.php	2007-04-24 09:09:15 UTC (rev 5337)
@@ -78,7 +78,7 @@
 				$article = $articles->getBlogArticle( $this->_articleId, $this->_blogInfo->getId());
 				if( !$article ) {
 					$this->_view = new AdminArticleTrackbacksListView( $this->_blogInfo );
-					$this->_view->setErrorMessage( $this->_locale->tr("error_fetching_post" ));
+					$this->_view->setErrorMessage( $this->_locale->tr("error_fetching_article" ));
 					$this->setCommonData();
 					
 					return false;

Modified: plog/branches/lifetype-1.2/class/action/admin/admineditcommentsaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/admineditcommentsaction.class.php	2007-04-24 09:02:16 UTC (rev 5336)
+++ plog/branches/lifetype-1.2/class/action/admin/admineditcommentsaction.class.php	2007-04-24 09:09:15 UTC (rev 5337)
@@ -51,7 +51,7 @@
 				$article = $articles->getBlogArticle( $articleId, $this->_blogInfo->getId());
 				if( !$article ) {
 					$this->_view = new AdminPostsListView( $this->_blogInfo );
-					$this->_view->setErrorMessage( $this->_locale->tr("error_fetching_post" ));				
+					$this->_view->setErrorMessage( $this->_locale->tr("error_fetching_article" ));				
 				}			
 				else
 					$this->_view = new $this->_viewClass( $this->_blogInfo, Array( "article" => $article,

Modified: plog/branches/lifetype-1.2/class/action/admin/adminpoststatsaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/adminpoststatsaction.class.php	2007-04-24 09:02:16 UTC (rev 5336)
+++ plog/branches/lifetype-1.2/class/action/admin/adminpoststatsaction.class.php	2007-04-24 09:09:15 UTC (rev 5337)
@@ -59,7 +59,7 @@
             $post  = $posts->getBlogArticle( $this->_postId, $this->_blogInfo->getId());
             if( !$post ) {
             	$this->_view = new AdminPostsListView( $this->_blogInfo );
-                $this->_view->setErrorMessage( $this->_locale->tr("error_fetching_post"));
+                $this->_view->setErrorMessage( $this->_locale->tr("error_fetching_article"));
                 $this->setCommonData();
                 return false;
             }

Modified: plog/branches/lifetype-1.2/class/action/admin/adminupdatepostaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/adminupdatepostaction.class.php	2007-04-24 09:02:16 UTC (rev 5336)
+++ plog/branches/lifetype-1.2/class/action/admin/adminupdatepostaction.class.php	2007-04-24 09:09:15 UTC (rev 5337)
@@ -86,7 +86,7 @@
             // there must be something wrong if we can't fetch the post that we are trying to update...
             if( !$post ) {
 				$this->_view = new AdminPostsListView( $this->_blogInfo );
-				$this->_view->setErrorMessage( $this->_locale->tr("error_fetching_post"));
+				$this->_view->setErrorMessage( $this->_locale->tr("error_fetching_article"));
                 $this->setCommonData();
 
                 return false;



More information about the pLog-svn mailing list