[pLog-svn] r3241 - plog/trunk/class/action/admin

pwestbro at devel.lifetype.net pwestbro at devel.lifetype.net
Wed Apr 12 09:16:46 GMT 2006


Author: pwestbro
Date: 2006-04-12 09:16:45 +0000 (Wed, 12 Apr 2006)
New Revision: 3241

Modified:
   plog/trunk/class/action/admin/adminupdatepostaction.class.php
Log:
Fixed a problem where updating a post from the web interface would fail

Modified: plog/trunk/class/action/admin/adminupdatepostaction.class.php
===================================================================
--- plog/trunk/class/action/admin/adminupdatepostaction.class.php	2006-04-11 22:07:33 UTC (rev 3240)
+++ plog/trunk/class/action/admin/adminupdatepostaction.class.php	2006-04-12 09:16:45 UTC (rev 3241)
@@ -169,7 +169,7 @@
 				if( $this->_sendPings ) {
                     $t = new Timestamp();
                     $today = $t->getTimestamp();
-                    if($today > $article->getDate()){
+                    if($today > $post->getDate()){
                         $message .= "<br/><br/>".$this->sendXmlRpcPings();
                     }
 				}				



More information about the pLog-svn mailing list