[pLog-svn] r2626 - in plugins/trunk: atom contentfilter emailencryption feedreader galleryfeeds guestbook hostblock karma port print secret unported/logger

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Thu Nov 24 05:34:38 GMT 2005


Author: jondaley
Date: 2005-11-24 05:34:37 +0000 (Thu, 24 Nov 2005)
New Revision: 2626

Modified:
   plugins/trunk/atom/pluginatom.class.php
   plugins/trunk/contentfilter/plugincontentfilter.class.php
   plugins/trunk/emailencryption/pluginemailencryption.class.php
   plugins/trunk/feedreader/pluginfeedreader.class.php
   plugins/trunk/galleryfeeds/plugingalleryfeeds.class.php
   plugins/trunk/guestbook/pluginguestbook.class.php
   plugins/trunk/hostblock/pluginhostblock.class.php
   plugins/trunk/karma/pluginkarma.class.php
   plugins/trunk/port/pluginport.class.php
   plugins/trunk/print/pluginprint.class.php
   plugins/trunk/secret/pluginsecret.class.php
   plugins/trunk/unported/logger/pluginlogger.class.php
Log:
typo in a bunch of plugins.  variable must have changed names at some point

Modified: plugins/trunk/atom/pluginatom.class.php
===================================================================
--- plugins/trunk/atom/pluginatom.class.php	2005-11-24 05:29:55 UTC (rev 2625)
+++ plugins/trunk/atom/pluginatom.class.php	2005-11-24 05:34:37 UTC (rev 2626)
@@ -13,7 +13,7 @@
 			$this->PluginBase();
 
 			$this->id = "atom";
-			$this->description = "Provides Atom access to your blog.";
+			$this->desc = "Provides Atom access to your blog.";
 			$this->author = "The pLog Team";
 			$this->locales = Array( "en_UK" );
 

Modified: plugins/trunk/contentfilter/plugincontentfilter.class.php
===================================================================
--- plugins/trunk/contentfilter/plugincontentfilter.class.php	2005-11-24 05:29:55 UTC (rev 2625)
+++ plugins/trunk/contentfilter/plugincontentfilter.class.php	2005-11-24 05:34:37 UTC (rev 2626)
@@ -25,7 +25,7 @@
 			$this->PluginBase();
 			
 			$this->id = "contentfilter";
-			$this->description = "This plugin offers you to filter specific content when comment submitted.";
+			$this->desc = "This plugin offers you to filter specific content when comment submitted.";
 			$this->author = "The pLog Team";
 			$this->locales = Array( "en_UK", "zh_TW" , "zh_CN" );
 			

Modified: plugins/trunk/emailencryption/pluginemailencryption.class.php
===================================================================
--- plugins/trunk/emailencryption/pluginemailencryption.class.php	2005-11-24 05:29:55 UTC (rev 2625)
+++ plugins/trunk/emailencryption/pluginemailencryption.class.php	2005-11-24 05:34:37 UTC (rev 2626)
@@ -11,7 +11,7 @@
 			$this->PluginBase();
 
 			$this->id = "emailencryption";
-			$this->description = "Encryption Email for pLog";
+			$this->desc = "Encryption Email for pLog";
 			$this->author = "Minstrel Chiu";
 			$this->locales = Array("en_UK" , "zh_TW");
 

Modified: plugins/trunk/feedreader/pluginfeedreader.class.php
===================================================================
--- plugins/trunk/feedreader/pluginfeedreader.class.php	2005-11-24 05:29:55 UTC (rev 2625)
+++ plugins/trunk/feedreader/pluginfeedreader.class.php	2005-11-24 05:34:37 UTC (rev 2626)
@@ -9,7 +9,7 @@
 			$this->PluginBase();
 			
 			$this->id = "feedreader";
-			$this->description = "RSS/Atom feed reader integrated into pLog's admin interface";
+			$this->desc = "RSS/Atom feed reader integrated into pLog's admin interface";
 			$this->author = "The pLog Team";
 			$this->locales = Array( "en_UK" , "zh_TW" , "zh_CN", "es_ES" );
 			

Modified: plugins/trunk/galleryfeeds/plugingalleryfeeds.class.php
===================================================================
--- plugins/trunk/galleryfeeds/plugingalleryfeeds.class.php	2005-11-24 05:29:55 UTC (rev 2625)
+++ plugins/trunk/galleryfeeds/plugingalleryfeeds.class.php	2005-11-24 05:34:37 UTC (rev 2626)
@@ -14,7 +14,7 @@
             $this->PluginBase();
             
             $this->id = "galleryfeeds";
-            $this->description = "Generates feeds/playlists based on the contents of albums";
+            $this->desc = "Generates feeds/playlists based on the contents of albums";
             $this->author = "The pLog Team";
             // no need to fill this array after 1.0.1
             $this->locales = Array();

Modified: plugins/trunk/guestbook/pluginguestbook.class.php
===================================================================
--- plugins/trunk/guestbook/pluginguestbook.class.php	2005-11-24 05:29:55 UTC (rev 2625)
+++ plugins/trunk/guestbook/pluginguestbook.class.php	2005-11-24 05:34:37 UTC (rev 2626)
@@ -12,7 +12,7 @@
 			$this->PluginBase();
 
 			$this->id = "guestbook";
-			$this->description = "Provide guestbook for pLog.";
+			$this->desc = "Provide guestbook for pLog.";
 			$this->author = "Minstrel Chiu";
 			$this->locales = Array( "en_UK" , "zh_TW", "zh_CN" );
 

Modified: plugins/trunk/hostblock/pluginhostblock.class.php
===================================================================
--- plugins/trunk/hostblock/pluginhostblock.class.php	2005-11-24 05:29:55 UTC (rev 2625)
+++ plugins/trunk/hostblock/pluginhostblock.class.php	2005-11-24 05:34:37 UTC (rev 2626)
@@ -26,7 +26,7 @@
 			$this->PluginBase();
 			
 			$this->id = "hostblock";
-			$this->description = "Allows to block hosts";
+			$this->desc = "Allows to block hosts";
 			$this->author = "The pLog Team";
 			$this->locales = Array( "en_UK" , "zh_TW" , "zh_CN" );
 			

Modified: plugins/trunk/karma/pluginkarma.class.php
===================================================================
--- plugins/trunk/karma/pluginkarma.class.php	2005-11-24 05:29:55 UTC (rev 2625)
+++ plugins/trunk/karma/pluginkarma.class.php	2005-11-24 05:34:37 UTC (rev 2626)
@@ -20,7 +20,7 @@
 			$this->PluginBase();
 			
 			$this->id = "karma";
-			$this->description = "Implements karma rating for posts";
+			$this->desc = "Implements karma rating for posts";
 			$this->author = "The pLog Team";
 			$this->locales = Array();
 			

Modified: plugins/trunk/port/pluginport.class.php
===================================================================
--- plugins/trunk/port/pluginport.class.php	2005-11-24 05:29:55 UTC (rev 2625)
+++ plugins/trunk/port/pluginport.class.php	2005-11-24 05:34:37 UTC (rev 2626)
@@ -57,7 +57,7 @@
 			$this->PluginBase();
 			
 			$this->id = "port";
-			$this->description = "Use the Port plugin to import your entries from other softwares (that use MySQL DB).";
+			$this->desc = "Use the Port plugin to import your entries from other softwares (that use MySQL DB).";
 			$this->author = "Bradley Liang";
 			$this->locales = Array();
 			

Modified: plugins/trunk/print/pluginprint.class.php
===================================================================
--- plugins/trunk/print/pluginprint.class.php	2005-11-24 05:29:55 UTC (rev 2625)
+++ plugins/trunk/print/pluginprint.class.php	2005-11-24 05:34:37 UTC (rev 2626)
@@ -13,7 +13,7 @@
 			$this->PluginBase();
 			
 			$this->id = "print";
-			$this->description = "Generates printable versions of posts";
+			$this->desc = "Generates printable versions of posts";
 			$this->author = "The pLog Team";
 			$this->locales = Array( "en_UK", "es_ES" );
 			

Modified: plugins/trunk/secret/pluginsecret.class.php
===================================================================
--- plugins/trunk/secret/pluginsecret.class.php	2005-11-24 05:29:55 UTC (rev 2625)
+++ plugins/trunk/secret/pluginsecret.class.php	2005-11-24 05:34:37 UTC (rev 2626)
@@ -16,7 +16,7 @@
             $this->PluginBase();
             
             $this->id = "secret";
-            $this->description = "This plugin offers the password protect to specific articles, unless user provide the right password or they can not see the articles.";
+            $this->desc = "This plugin offers the password protect to specific articles, unless user provide the right password or they can not see the articles.";
             $this->locales = Array( "en_UK" , "zh_TW" , "zh_CN" );
             $this->author = "The pLog Team";
             

Modified: plugins/trunk/unported/logger/pluginlogger.class.php
===================================================================
--- plugins/trunk/unported/logger/pluginlogger.class.php	2005-11-24 05:29:55 UTC (rev 2625)
+++ plugins/trunk/unported/logger/pluginlogger.class.php	2005-11-24 05:34:37 UTC (rev 2626)
@@ -18,7 +18,7 @@
 			
 			// set the plugin information
 			$this->id = "logger";
-			$this->description = "A logging plugin";
+			$this->desc = "A logging plugin";
 			$this->author = "The pLog Team";
 			$this->locales = Array();
 			




More information about the pLog-svn mailing list