[pLog-svn] r3877 - in plugins/trunk: . 0ipabuse atom atom/class/xml/atom authimage bin categorybrowser clickablecomments contentfilter delicious dnsantispam emailencryption feedreader galleryfeeds galleryimages helloworld hostblock jupload karma mailcentre mobile moblog moblog/class/moblog moderate nestedcomments nofollow plogeshi print smileys submissions templateeditor textparser unported/advancedsearch unported/backup unported/flickr unported/google unported/google/docs unported/guestbook unported/jsdictionary unported/jsdictionary/docs unported/logger unported/ploghaiku unported/port unported/remembercommentdata unported/secret unported/secretblog unported/shoutbox validatetrackback

oscar at devel.lifetype.net oscar at devel.lifetype.net
Mon Aug 14 16:48:41 GMT 2006


Author: oscar
Date: 2006-08-14 16:48:40 +0000 (Mon, 14 Aug 2006)
New Revision: 3877

Modified:
   plugins/trunk/0ipabuse/readme.txt
   plugins/trunk/atom/class/xml/atom/wsseauthentication.class.php
   plugins/trunk/atom/pluginatom.class.php
   plugins/trunk/authimage/pluginauthimage.class.php
   plugins/trunk/authimage/readme.txt
   plugins/trunk/bin/build.sh
   plugins/trunk/categorybrowser/README.txt
   plugins/trunk/clickablecomments/pluginclickablecomments.class.php
   plugins/trunk/contentfilter/plugincontentfilter.class.php
   plugins/trunk/contentfilter/readme.txt
   plugins/trunk/delicious/readme.txt
   plugins/trunk/dnsantispam/readme.txt
   plugins/trunk/emailencryption/pluginemailencryption.class.php
   plugins/trunk/feedreader/pluginfeedreader.class.php
   plugins/trunk/feedreader/readme.txt
   plugins/trunk/galleryfeeds/plugingalleryfeeds.class.php
   plugins/trunk/galleryimages/plugingalleryimages.class.php
   plugins/trunk/helloworld/pluginhelloworld.class.php
   plugins/trunk/hostblock/pluginhostblock.class.php
   plugins/trunk/hostblock/readme.txt
   plugins/trunk/jupload/readme.txt
   plugins/trunk/karma/readme.txt
   plugins/trunk/mailcentre/pluginmailcentre.class.php
   plugins/trunk/mobile/pluginmobile.class.php
   plugins/trunk/moblog.php
   plugins/trunk/moblog/class/moblog/moblogresponse.class.php
   plugins/trunk/moblog/pluginmoblog.class.php
   plugins/trunk/moderate/pluginmoderate.class.php
   plugins/trunk/moderate/readme.txt
   plugins/trunk/nestedcomments/pluginnestedcomments.class.php
   plugins/trunk/nofollow/readme.txt
   plugins/trunk/plogeshi/pluginplogeshi.class.php
   plugins/trunk/print/pluginprint.class.php
   plugins/trunk/smileys/pluginsmileys.class.php
   plugins/trunk/smileys/readme.txt
   plugins/trunk/submissions/pluginsubmissions.class.php
   plugins/trunk/submissions/readme.txt
   plugins/trunk/templateeditor/plugintemplateeditor.class.php
   plugins/trunk/templateeditor/readme.txt
   plugins/trunk/textparser/plugintextparser.class.php
   plugins/trunk/textparser/readme.txt
   plugins/trunk/unported/advancedsearch/pluginadvancedsearch.class.php
   plugins/trunk/unported/backup/pluginbackup.class.php
   plugins/trunk/unported/flickr/readme.txt
   plugins/trunk/unported/google/docs/readme.html
   plugins/trunk/unported/google/plugingoogle.class.php
   plugins/trunk/unported/guestbook/pluginguestbook.class.php
   plugins/trunk/unported/guestbook/readme.txt
   plugins/trunk/unported/jsdictionary/docs/readme.html
   plugins/trunk/unported/jsdictionary/pluginjsdictionary.class.php
   plugins/trunk/unported/logger/pluginlogger.class.php
   plugins/trunk/unported/ploghaiku/README
   plugins/trunk/unported/port/pluginport.class.php
   plugins/trunk/unported/remembercommentdata/readme.txt
   plugins/trunk/unported/secret/pluginsecret.class.php
   plugins/trunk/unported/secret/readme.txt
   plugins/trunk/unported/secretblog/pluginsecretblog.class.php
   plugins/trunk/unported/shoutbox/README.txt
   plugins/trunk/validatetrackback/readme.txt
Log:
replaced some occurences of "plog" with "LifeType"


Modified: plugins/trunk/0ipabuse/readme.txt
===================================================================
--- plugins/trunk/0ipabuse/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/0ipabuse/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -25,7 +25,7 @@
 
 
 Install:
-1. Configurate your DNS Anti Spam plugin in your pLog control center
+1. Configurate your DNS Anti Spam plugin in your LifeType control center
 
 
 Optional Installation:

Modified: plugins/trunk/atom/class/xml/atom/wsseauthentication.class.php
===================================================================
--- plugins/trunk/atom/class/xml/atom/wsseauthentication.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/atom/class/xml/atom/wsseauthentication.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -67,8 +67,8 @@
 			// Nokia's Lifeblog will not. Weird, but all we can do is check for both and see who gets it right!
 			$passwordDigestAlt = base64_encode(pack("H*",SHA1::sha1($this->nonce.$this->created.$password)));
 		
-			AtomLogger::Log( "pLog's computed password digest: $passwordDigest" );
-			AtomLogger::Log( "pLog's alternative computed password digest: $passwordDigestAlt" );			
+			AtomLogger::Log( "LifeType's computed password digest: $passwordDigest" );
+			AtomLogger::Log( "LifeType's alternative computed password digest: $passwordDigestAlt" );			
 
 			// finally, compare if they are the same or not...
 			return(( $passwordDigest == $this->passwordDigest ) || ( $passwordDigestAlt == $this->passwordDigest ));

Modified: plugins/trunk/atom/pluginatom.class.php
===================================================================
--- plugins/trunk/atom/pluginatom.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/atom/pluginatom.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -14,7 +14,7 @@
 
 			$this->id = "atom";
 			$this->desc = "Provides Atom access to your blog.";
-			$this->author = "The pLog Team";
+			$this->author = "The LifeType Project";
 			$this->locales = Array( "en_UK" );
 
 			$this->init();

Modified: plugins/trunk/authimage/pluginauthimage.class.php
===================================================================
--- plugins/trunk/authimage/pluginauthimage.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/authimage/pluginauthimage.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -26,7 +26,7 @@
             
             $this->id      = "authimage";
             $this->author  = "Mark Wu";
-            $this->desc    = 'This plugin offers extra comment authentication for pLog. The idea is inspired by <a href="http://www.gudlyf.com/index.php?p=376">WordPress AuthImage Plugin</a> written by Gudlyf.';
+            $this->desc    = 'This plugin offers extra comment authentication for LifeType. The idea is inspired by <a href="http://www.gudlyf.com/index.php?p=376">WordPress AuthImage Plugin</a> written by Gudlyf.';
             $this->version = '1.0.1';
 
             $this->locales = Array( "en_UK" , "zh_TW" , "zh_CN", "es_ES", "de_DE" );

Modified: plugins/trunk/authimage/readme.txt
===================================================================
--- plugins/trunk/authimage/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/authimage/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -4,7 +4,7 @@
 Release Date: 2005/02/15
 Version: 1.0
 
-This plugin offers extra comment authentication for pLog. The idea is inspired by <a href="http://www.gudlyf.com/index.php?p=376">WordPress AuthImage Plugin</a> written by Gudlyf.
+This plugin offers extra comment authentication for LifeType. The idea is inspired by <a href="http://www.gudlyf.com/index.php?p=376">WordPress AuthImage Plugin</a> written by Gudlyf.
 
 In order to use, simply include the following:
 1. $authimage->isEnabled() to check the plugin is enabled or not. 

Modified: plugins/trunk/bin/build.sh
===================================================================
--- plugins/trunk/bin/build.sh	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/bin/build.sh	2006-08-14 16:48:40 UTC (rev 3877)
@@ -3,7 +3,7 @@
 #
 # Script to generate distribution builds of pLog
 #
-# (c) 27-08-2004, the pLog Team
+# (c) 27-08-2004, the LifeType team
 #
 #
 # Requires two parameters: the name of the output package and the
@@ -28,7 +28,7 @@
 
 #sourceforge wants all unique filenames.  So
 # we code them with a version number.  ugh.
-VERSION="1.0"
+VERSION="1.1"
 
 #
 # helper functions to print things in different colors

Modified: plugins/trunk/categorybrowser/README.txt
===================================================================
--- plugins/trunk/categorybrowser/README.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/categorybrowser/README.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -1,4 +1,4 @@
-Category Browser plugin for pLog.
+Category Browser plugin for LifeType.
 Author: Jon Daley
 URL: http://limedaley.com/
 

Modified: plugins/trunk/clickablecomments/pluginclickablecomments.class.php
===================================================================
--- plugins/trunk/clickablecomments/pluginclickablecomments.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/clickablecomments/pluginclickablecomments.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -11,7 +11,7 @@
             
             $this->id = "clickablecomments";
             $this->desc = "Converts URLs in comments left by visitors into clickable links";
-            $this->author = "The pLog Project";            
+            $this->author = "The LifeType Project";            
             
             // that's the only event we care for!
             $this->registerNotification( EVENT_PRE_COMMENT_ADD );            

Modified: plugins/trunk/contentfilter/plugincontentfilter.class.php
===================================================================
--- plugins/trunk/contentfilter/plugincontentfilter.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/contentfilter/plugincontentfilter.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -26,7 +26,7 @@
 			
 			$this->id = "contentfilter";
 			$this->desc = "This plugin offers you to filter specific content when comment submitted.";
-			$this->author = "The pLog Team";
+			$this->author = "The LifeType Project";
 			$this->locales = Array( "en_UK", "zh_TW" , "zh_CN" );
 			
 			$this->init();

Modified: plugins/trunk/contentfilter/readme.txt
===================================================================
--- plugins/trunk/contentfilter/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/contentfilter/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -1,9 +1,9 @@
 Plugin: Content Filter
-Author: pLog Team
+Author: LifeType Team
 Release Date: 2005/01/23
 Version: 1.0
 
 This plugin offers you to filter specific content when comment submitted.
 
 Install:
-1. Configurate your Content Filter plugin in your pLog control center
\ No newline at end of file
+1. Configurate your Content Filter plugin in your LifeType control center
\ No newline at end of file

Modified: plugins/trunk/delicious/readme.txt
===================================================================
--- plugins/trunk/delicious/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/delicious/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -7,10 +7,10 @@
 
 Install:
 1. Copy the install/templates/delicious.template to your plog template folder.
-2. Configurate your Del.icio.us plugin in your pLog control center
+2. Configurate your Del.icio.us plugin in your LifeType control center
 3. Use $delicious->pluginTemplatePage() to get delicious template page url
 
 Usage:
-Use the following URL to call your pLog Delicous Plugin Page
+Use the following URL to call your LifeType Delicous Plugin Page
 http://your-plog/index.php?op=DeliciousShow&blogId=1
 

Modified: plugins/trunk/dnsantispam/readme.txt
===================================================================
--- plugins/trunk/dnsantispam/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/dnsantispam/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -6,4 +6,4 @@
 Check if a comment poster is on an open proxy list, and check if the content contains known spammer domains.
 
 Install:
-1. Configurate your DNS Anti Spam plugin in your pLog control center
\ No newline at end of file
+1. Configurate your DNS Anti Spam plugin in your LifeType control center
\ No newline at end of file

Modified: plugins/trunk/emailencryption/pluginemailencryption.class.php
===================================================================
--- plugins/trunk/emailencryption/pluginemailencryption.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/emailencryption/pluginemailencryption.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -11,7 +11,7 @@
 			$this->PluginBase();
 
 			$this->id = "emailencryption";
-			$this->desc = "Encryption Email for pLog";
+			$this->desc = "Encryption Email for LifeType";
 			$this->author = "Minstrel Chiu";
 			$this->locales = Array("en_UK" , "zh_TW");
 

Modified: plugins/trunk/feedreader/pluginfeedreader.class.php
===================================================================
--- plugins/trunk/feedreader/pluginfeedreader.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/feedreader/pluginfeedreader.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -9,8 +9,8 @@
 			$this->PluginBase();
 			
 			$this->id = "feedreader";
-			$this->desc = "RSS/Atom feed reader integrated into pLog's admin interface";
-			$this->author = "The pLog Team";
+			$this->desc = "RSS/Atom feed reader integrated into LifeType's admin interface";
+			$this->author = "The LifeType Project";
 			$this->locales = Array( "en_UK" , "zh_TW" , "zh_CN", "es_ES" );
 			
 			// register our actions

Modified: plugins/trunk/feedreader/readme.txt
===================================================================
--- plugins/trunk/feedreader/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/feedreader/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -1,6 +1,6 @@
 Plugin: Feed Reader
-Author: pLog Team
+Author: LifeType Team
 Release Date: 2005/02/13
 Version: 1.0
 
-RSS/Atom feed reader integrated into pLog's admin interface
\ No newline at end of file
+RSS/Atom feed reader integrated into LifeType's admin interface
\ No newline at end of file

Modified: plugins/trunk/galleryfeeds/plugingalleryfeeds.class.php
===================================================================
--- plugins/trunk/galleryfeeds/plugingalleryfeeds.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/galleryfeeds/plugingalleryfeeds.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -15,7 +15,7 @@
             
             $this->id = "galleryfeeds";
             $this->desc = "Generates feeds/playlists based on the contents of albums";
-            $this->author = "The pLog Team";
+            $this->author = "The LifeType Project";
             // no need to fill this array after 1.0.1
             $this->locales = Array();
             

Modified: plugins/trunk/galleryimages/plugingalleryimages.class.php
===================================================================
--- plugins/trunk/galleryimages/plugingalleryimages.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/galleryimages/plugingalleryimages.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -11,7 +11,7 @@
     
         function PluginGalleryImages()
         {
-            $this->author = "The pLog Team";
+            $this->author = "The LifeType Project";
             $this->desc = "This plugin offers two methods, one for fetching the most recently uploaded image and another one for retrieving a random image from our collection. Needless to say, this plugin only returns images and not any other type of resource. Only images that belong to public albums will be used. <br /><br />You can use the following snippet of template code to show the latest uploaded image in your templates:<br /><br /><b>{assign var=latestImage value=\$galleryimages-&gt;latestImage()}<br />&lt;a href=&quot;{\$url-&gt;resourceLink(\$latestImage)}&quot;&gt;<br />&lt;img style=&quot;border:0px;&quot; src=&quot;{\$url-&gt;resourcePreviewLink(\$latestImage)}&quot; alt=&quot;{\$latestImage-&gt;getDescription()}&quot; /&gt;<br />&lt;/a&gt;</b> <br /><br />To show a random image from your collection, you can use the following snippet: <br /><br /><b>{assign var=randomImage value=\$galleryimages-&gt;randomImage(9)}<br />&lt;a href=&quot;{\$url-&gt;resourceLink(\$randomImage)}&quot;&gt;<br />&lt;img style=&quot;border:0px;&quot; src=&quot;{\$url-&gt;resourcePreviewLink(\$randomImage)}&quot; alt=&quot;{\$randomImage-&gt;getDescription()}&quot; /&gt;<br />&lt;/a&gt;</b></p><p>And, you can use <br /><br /><strong>{\$galleryimages-&gt;randomImage(8)}</strong> to get 1 random image from album id=8, or use <br /><strong>{\$galleryimages-&gt;randomImage(10,3)}</strong> to get the 3 random images from album id=10 </p><p>Or, you also can use</p><p><strong>{\$galleryimages-&gt;lastImage(8)}</strong> to get last 1 upload image from album id=8, or use <br /><strong>{\$galleryimages-&gt;lastImage(10,3)}</strong> to get last 3 upload images from album id=10 <br /><br />";
             $this->id = "galleryimages";
             $this->locales = Array();

Modified: plugins/trunk/helloworld/pluginhelloworld.class.php
===================================================================
--- plugins/trunk/helloworld/pluginhelloworld.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/helloworld/pluginhelloworld.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -93,7 +93,7 @@
         	$this->PluginBase();
 
             $this->desc    = "This is a very simple plugin to show how to develop custom plugins";
-            $this->author  = "The pLog team";
+            $this->author  = "The LifeType team";
             $this->id      = "helloworld";
 			$this->locales = Array();
             

Modified: plugins/trunk/hostblock/pluginhostblock.class.php
===================================================================
--- plugins/trunk/hostblock/pluginhostblock.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/hostblock/pluginhostblock.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -27,7 +27,7 @@
 			
 			$this->id = "hostblock";
 			$this->desc = "Allows to block hosts";
-			$this->author = "The pLog Team";
+			$this->author = "The LifeType Project";
 			$this->locales = Array( "en_UK" , "zh_TW" , "zh_CN" );
 			
 			$this->init();

Modified: plugins/trunk/hostblock/readme.txt
===================================================================
--- plugins/trunk/hostblock/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/hostblock/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -1,9 +1,9 @@
 Plugin: Host Block
-Author: pLog Team
+Author: LifeType Team
 Release Date: 2005/01/23
 Version: 1.0
 
 This plugin offers you to block specific client IP when comment submitted.
 
 Install:
-1. Configurate your Host Block plugin in your pLog control center
\ No newline at end of file
+1. Configurate your Host Block plugin in your LifeType control center
\ No newline at end of file

Modified: plugins/trunk/jupload/readme.txt
===================================================================
--- plugins/trunk/jupload/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/jupload/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -6,7 +6,7 @@
 This plugin offers you to integrate JUpload into resource center.
 
 Install:
-Configurate your JUpload plugin in your pLog Admin Settings.
+Configurate your JUpload plugin in your LifeType Admin Settings.
 Enable it before use it.
 
 Notice:

Modified: plugins/trunk/karma/readme.txt
===================================================================
--- plugins/trunk/karma/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/karma/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -1,5 +1,5 @@
 Plugin: Karma
-Author: pLog Team
+Author: LifeType Team
 Release Date: 2005/02/25
 Version: 1.0
 
@@ -12,7 +12,7 @@
 4. $karma->getNegativeUrl($post) to get negative karma url
 
 Install:
-1. Configurate your Host Block plugin in your pLog control center
+1. Configurate your Host Block plugin in your LifeType control center
 2. Modify you post.template with the follow code to get karma link:
 {if !empty($karma)}
 {if $karma->isEnabled()}

Modified: plugins/trunk/mailcentre/pluginmailcentre.class.php
===================================================================
--- plugins/trunk/mailcentre/pluginmailcentre.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/mailcentre/pluginmailcentre.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -11,7 +11,7 @@
 		
 			$this->id = "mailcentre";
 			$this->desc = "Allows site administrators to send emails to users";
-			$this->author = "The pLog Team";
+			$this->author = "The LifeType Project";
 			$this->locale = Array();				
 			
 			// register our menu entries

Modified: plugins/trunk/mobile/pluginmobile.class.php
===================================================================
--- plugins/trunk/mobile/pluginmobile.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/mobile/pluginmobile.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -15,7 +15,7 @@
             
             $this->id = "mobile";
             $this->desc = "Allows pLog blogs to be accessed via mobile terminals";
-            $this->author = "The pLog Project";
+            $this->author = "The LifeType Project";
         }
      
         /** 

Modified: plugins/trunk/moblog/class/moblog/moblogresponse.class.php
===================================================================
--- plugins/trunk/moblog/class/moblog/moblogresponse.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/moblog/class/moblog/moblogresponse.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -8,7 +8,7 @@
     /**
      * this is the response that we will send back to the user
      *
-     * It uses pLog's messaging service to send the email, so we will
+     * It uses LifeType's messaging service to send the email, so we will
      * use the same settings as used by the core itself to send
      * messages.
      */

Modified: plugins/trunk/moblog/pluginmoblog.class.php
===================================================================
--- plugins/trunk/moblog/pluginmoblog.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/moblog/pluginmoblog.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -12,7 +12,7 @@
         function PluginMoblog()
         {
             $this->id = "moblog";
-            $this->author = "The pLog Team";
+            $this->author = "The LifeType Project";
             $this->locales = Array();
             $this->desc = "
 Send a message with the following format ('start' and 'end' messages not included!):<br/>

Modified: plugins/trunk/moblog.php
===================================================================
--- plugins/trunk/moblog.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/moblog.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -77,7 +77,7 @@
 	}
     else {
         $response = new MoblogResponse( $request->getReplyTo(),
-                                  "pLog Moblog: Error",
+                                  "LifeType Moblog: Error",
                                   "User or password are not correct."
                                  );
         MoblogLogger::log( "User ".$request->getUser()." did not authenticate correctly." );
@@ -107,7 +107,7 @@
             
             if( !$found ) {
                 $response = new MoblogResponse( $request->getReplyTo(),
-                                          "pLog Moblog: Error",
+                                          "LifeType Moblog: Error",
                                           "Incorrect blog."
                                          );
                 MoblogLogger::log( "Blog ".$request->getBlogId()." does not exist." );
@@ -120,7 +120,7 @@
         $blogInfo = $blogs->getBlogInfo( $request->getBlogId());
         if( !$blogInfo ) {
             $response = new MoblogResponse( $request->getReplyTo(),
-                                      "pLog Moblog: Error",
+                                      "LifeType Moblog: Error",
                                       "Incorrect blog identifier."
                                      );
             MoblogLogger::log( "Blog ".$request->getBlogId()." is not valid." );
@@ -136,7 +136,7 @@
     $pluginEnabled = $blogSettings->getValue( "plugin_moblog_enabled" );
     if( !$pluginEnabled ) {
         $response = new MoblogResponse( $request->getReplyTo(),
-                                  "pLog Moblog: Error",
+                                  "LifeType Moblog: Error",
                                   "The plugin has not been enabled for this blog."
                                  );
         MoblogLogger::log( "Plugin not enabled for blog ".$request->getBlogId());
@@ -151,7 +151,7 @@
     $userPerm = $userPermissions->getUserPermissions( $userInfo->getId(), $blogInfo->getId());
     if( !$userPerm ) {
         $response = new MoblogResponse( $request->getReplyTo(),
-                                  "pLog Moblog: Error",
+                                  "LifeType Moblog: Error",
                                   "You have no permissions in the given blog."
                                  );
         MoblogLogger::log( "User '".$request->getUser()."' has no permissions in blog ".$request->getBlogId());
@@ -172,7 +172,7 @@
     // as part of the error message the list of available categories
     if( !$category ) {
         $response = new MoblogResponse( $request->getReplyTo(),
-                                  "pLog Moblog: Error",
+                                  "LifeType Moblog: Error",
                                   "The category does not exist."
                                 );
         MoblogLogger::log( "User '".$request->getUser()."' tried to use category '".$categoryId.
@@ -194,7 +194,7 @@
     // check if the album was loaded
     if( !$album ) {
         $response = new MoblogResponse( $request->getReplyTo(),
-                                  "pLog Moblog: Error",
+                                  "LifeType Moblog: Error",
                                   "The album does not exist."
                                 );
         MoblogLogger::log( "User '".$request->getUser()."' tried to use album '".$albumId.
@@ -286,7 +286,7 @@
     
     if( !$result ) {
         $response = new MoblogResponse( $request->getReplyTo(),
-                                  "pLog Moblog: Error",
+                                  "LifeType Moblog: Error",
                                   "There was an error adding the post to the database."
                                  );
         MoblogLogger::log( "There was an error adding the post to the database.");

Modified: plugins/trunk/moderate/pluginmoderate.class.php
===================================================================
--- plugins/trunk/moderate/pluginmoderate.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/moderate/pluginmoderate.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -16,7 +16,7 @@
 			
 			$this->id = "moderate";
 			$this->desc = "Provides moderation of comments";
-			$this->author = "The pLog Team";
+			$this->author = "The LifeType Project";
 			$this->locales = Array( "en_UK", "zh_TW", "es_ES" );
 			
 			$this->init();

Modified: plugins/trunk/moderate/readme.txt
===================================================================
--- plugins/trunk/moderate/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/moderate/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -1,9 +1,9 @@
 Plugin: Moderate
-Author: pLog Team
+Author: LifeType Team
 Release Date: 2005/01/23
 Version: 1.0
 
 This plugin offers you moderate of comments.
 
 Install:
-1. Configurate your Moderate plugin in your pLog control center
\ No newline at end of file
+1. Configurate your Moderate plugin in your LifeType control center
\ No newline at end of file

Modified: plugins/trunk/nestedcomments/pluginnestedcomments.class.php
===================================================================
--- plugins/trunk/nestedcomments/pluginnestedcomments.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/nestedcomments/pluginnestedcomments.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -1,6 +1,6 @@
 <?php
 
-	include_once( PLOG_CLASS_PATH."class/plugin/pluginbase.class.php" );
+	include_once( PLOG_CLASS_PATH."class/plugin/pluginbase.class.php" );
 		
 	/**
 	 * change this constant in case you want to redefine the limit for nested
@@ -14,7 +14,7 @@
 		function PluginNestedComments()
 		{
 			$this->id = "nestedcomments";
-			$this->author = "The pLog Team";
+			$this->author = "The LifeType Project";
 			$this->locales = Array();
 			
 			// description
@@ -98,8 +98,8 @@
 			// prevent the php warning by returning for example an
 			// empty array
 			if( !is_array( $postComments ))
-				return( Array());
-            if( empty($postComments ))
+				return( Array());
+            if( empty($postComments ))
                 return( Array());
 			
 			foreach( $postComments as $comment ) {

Modified: plugins/trunk/nofollow/readme.txt
===================================================================
--- plugins/trunk/nofollow/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/nofollow/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -6,5 +6,5 @@
 This plugin offers 'rel=nofollow' to prevent the comment spam.
 
 Install:
-1. Configurate your NoFollow plugin in your pLog control center
+1. Configurate your NoFollow plugin in your LifeType control center
 

Modified: plugins/trunk/plogeshi/pluginplogeshi.class.php
===================================================================
--- plugins/trunk/plogeshi/pluginplogeshi.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/plogeshi/pluginplogeshi.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -2,6 +2,7 @@
 
     include_once( PLOG_CLASS_PATH."class/plugin/pluginbase.class.php" );    
     include_once( PLOG_CLASS_PATH."plugins/plogeshi/class/plogeshi/plogeshi.class.php" );
+	include_once( PLOG_CLASS_PATH."class/template/menu/menu.class.php" );
 
     define( "PLOGESHI_PATH", PLOG_CLASS_PATH . "plugins/plogeshi/" );
     define( "PLOGESHI_GESHI_PATH", PLOGESHI_PATH ."inc/" );

Modified: plugins/trunk/print/pluginprint.class.php
===================================================================
--- plugins/trunk/print/pluginprint.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/print/pluginprint.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -14,7 +14,7 @@
 			
 			$this->id = "print";
 			$this->desc = "Generates printable versions of posts";
-			$this->author = "The pLog Team";
+			$this->author = "The LifeType Project";
 			$this->locales = Array( "en_UK", "es_ES" );
 			
 			$this->init();

Modified: plugins/trunk/smileys/pluginsmileys.class.php
===================================================================
--- plugins/trunk/smileys/pluginsmileys.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/smileys/pluginsmileys.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -22,7 +22,7 @@
 			// set some information
 			// ---
 			$this->id = "smileys";
-            $this->author = "The pLog Team";
+            $this->author = "The LifeType Project";
             $this->desc = "The plugin offer smileys to comments and articles.";
 
 			$this->locales = Array( "en_UK" , "zh_TW" , "zh_CN", "es_ES" );

Modified: plugins/trunk/smileys/readme.txt
===================================================================
--- plugins/trunk/smileys/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/smileys/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -1,5 +1,5 @@
 Plugin: Smileys
-Author: The pLog Team
+Author: The LifeType Project
 Release Date: 2005/02/13
 Version: 1.0
 

Modified: plugins/trunk/submissions/pluginsubmissions.class.php
===================================================================
--- plugins/trunk/submissions/pluginsubmissions.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/submissions/pluginsubmissions.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -18,7 +18,7 @@
 			
 			$this->id = "submissions";
 			$this->desc = "Allows visitors to submit stories to the blog.";
-			$this->author = "The pLog Team";
+			$this->author = "The LifeType Project";
 			$this->locales = Array();
 			
 			$this->init();

Modified: plugins/trunk/submissions/readme.txt
===================================================================
--- plugins/trunk/submissions/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/submissions/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -1,15 +1,15 @@
 Plugin: Submissions
-Author: The pLog Team
+Author: The LifeType Project
 Release Date: 2005/05/16
 Version: 1.0
 
 This plugin offers you to prvide your visitor post article without login into admin panel
 
 Install:
-2. Configure and enable the Submissions plugin in your pLog control center
+2. Configure and enable the Submissions plugin in your LifeType control center
 3. Use $submissions->pluginTemplatePage() to get submissions template page url
 
 Usage:
-Use the following URL to call your pLog Submission Plugin Page
+Use the following URL to call your LifeType Submission Plugin Page
 http://your-plog/index.php?op=submissionForm&blogId=1
 

Modified: plugins/trunk/templateeditor/plugintemplateeditor.class.php
===================================================================
--- plugins/trunk/templateeditor/plugintemplateeditor.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/templateeditor/plugintemplateeditor.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -15,7 +15,7 @@
 
 			$this->id      = "templateeditor";
 			$this->author  = "Mark Wu";
-			$this->desc    = "The plugin offer online template editor function for pLog";
+			$this->desc    = "The plugin offer online template editor function for LifeType";
 
             $config =& Config::getConfig();
             $this->pluginEnabled = $config->getValue( "plugin_templateeditor_enabled" );

Modified: plugins/trunk/templateeditor/readme.txt
===================================================================
--- plugins/trunk/templateeditor/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/templateeditor/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -3,7 +3,7 @@
 Release Date: 2005/11/27
 Version: 1.3
 
-The plugins offers complete template editor capabilities for pLog. It includes the following features.
+The plugins offers complete template editor capabilities for LifeType. It includes the following features.
 1. Template Sets Browser
 2. Template Files Browser
 3. Template Files Editor with a Online Smarty Editor (under development)

Modified: plugins/trunk/textparser/plugintextparser.class.php
===================================================================
--- plugins/trunk/textparser/plugintextparser.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/textparser/plugintextparser.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -19,7 +19,7 @@
 			$this->PluginBase();
 			
 			$this->desc = "A plugin that allows users to use wiki markup in their posts.";
-			$this->author = "The pLog Team";
+			$this->author = "The LifeType Project";
 			$this->id = "textparser";
 			$this->locales = Array( "en_UK", "zh_TW" );
 			

Modified: plugins/trunk/textparser/readme.txt
===================================================================
--- plugins/trunk/textparser/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/textparser/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -1,9 +1,9 @@
 Plugin: Text Parser
-Author: pLog Team
+Author: LifeType Team
 Release Date: 2005/01/23
 Version: 1.0
 
 A plugin that allows users to use wiki markup in their posts.
 
 Install:
-1. Configurate your Text Parser plugin in your pLog control center
\ No newline at end of file
+1. Configurate your Text Parser plugin in your LifeType control center
\ No newline at end of file

Modified: plugins/trunk/unported/advancedsearch/pluginadvancedsearch.class.php
===================================================================
--- plugins/trunk/unported/advancedsearch/pluginadvancedsearch.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/advancedsearch/pluginadvancedsearch.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -66,7 +66,7 @@
 			// set some information
 			// ---
             $this->desc = "A plugin to perform advanced searches";
-            $this->author = "The pLog Team";
+            $this->author = "The LifeType Project";
 			$this->id = "advancedsearch";
 			$this->locales = Array();
 			

Modified: plugins/trunk/unported/backup/pluginbackup.class.php
===================================================================
--- plugins/trunk/unported/backup/pluginbackup.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/backup/pluginbackup.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -21,8 +21,8 @@
         {
           $this->connectDb();
 	    $this->author = "Bradley Liang";
-	    $this->desc   = "The plugin backs up all of pLog's databases (including any created by plugins), but does not backup other tables.  If you are looking to restore database structure, it will be easier to purge your database and run the wizard over with a fresh installation.<br /><br />  ".
-	    			    "Usage: Unfortunately, I've not much idea on how to implement plugin versatility from within pLog's Administrative interface.  Instead, place the following command in a temporary template..<br />".
+	    $this->desc   = "The plugin backs up all of LifeType's databases (including any created by plugins), but does not backup other tables.  If you are looking to restore database structure, it will be easier to purge your database and run the wizard over with a fresh installation.<br /><br />  ".
+	    			    "Usage: Unfortunately, I've not much idea on how to implement plugin versatility from within LifeType's Administrative interface.  Instead, place the following command in a temporary template..<br />".
 	    			    "&nbsp;&nbsp;&nbsp;&nbsp;{\$dbbackup->Backup()}<br />".
 				    "A file entitled 'backup.sql' will be created in your main pLog directory.  To restore simply run the commands from the file from SQL.<br /><br />".
 	    			    "TODO:<br />&nbsp;&nbsp;&nbsp;&nbsp;-Use of the admin configuration panel to back data up.<br />&nbsp;&nbsp;&nbsp;&nbsp;-Option to restore entries to DB<br />";

Modified: plugins/trunk/unported/flickr/readme.txt
===================================================================
--- plugins/trunk/unported/flickr/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/flickr/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -9,11 +9,11 @@
 
 Install:
 1. Copy the install/templates/flickr.template to your plog template folder.
-2. Configurate your Flickr plugin in your pLog control center
+2. Configurate your Flickr plugin in your LifeType control center
 3. Use $flickr->pluginTemplatePage() to get flickr template page url
 
 Usage:
-Use the following URL to call your pLog Flickr Plugin Page
+Use the following URL to call your LifeType Flickr Plugin Page
 http://your-plog/index.php?op=FlickrShow&blogId=1
 
 History:

Modified: plugins/trunk/unported/google/docs/readme.html
===================================================================
--- plugins/trunk/unported/google/docs/readme.html	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/google/docs/readme.html	2006-08-14 16:48:40 UTC (rev 3877)
@@ -5,7 +5,7 @@
  <body>
  <h1>pLog Google Plugin</h1>
  <p>
-  The pLog Google plugin is a very simple plugin that will highlight all the search terms if
+  The LifeType Google plugin is a very simple plugin that will highlight all the search terms if
   somebody is coming to our page from Google (it will scan the referer) At the moment, Google
   is the only search engine detected and handled correctly but more will be added in the future.
  </p>

Modified: plugins/trunk/unported/google/plugingoogle.class.php
===================================================================
--- plugins/trunk/unported/google/plugingoogle.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/google/plugingoogle.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -47,10 +47,10 @@
 If you wish to customize the way this message looks, it is possible to do so using
 CSS. The message is included within a &lt;div class="googlepluginmessage"&gt;...&lt;/div&gt;
 <br/><br/>
-Please reports any bugs to the pLog team! :)
+Please reports any bugs to the LifeType team! :)
 EOD;
 
-            $this->author = "The pLog team";
+            $this->author = "The LifeType team";
 
             $this->totalReplacements = 0;
             $this->highlightedTerms  = "";

Modified: plugins/trunk/unported/guestbook/pluginguestbook.class.php
===================================================================
--- plugins/trunk/unported/guestbook/pluginguestbook.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/guestbook/pluginguestbook.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -12,7 +12,7 @@
 			$this->PluginBase();
 
 			$this->id = "guestbook";
-			$this->desc = "Provide guestbook for pLog.";
+			$this->desc = "Provide guestbook for LifeType.";
 			$this->author = "Minstrel Chiu";
 			$this->locales = Array( "en_UK" , "zh_TW", "zh_CN" );
 

Modified: plugins/trunk/unported/guestbook/readme.txt
===================================================================
--- plugins/trunk/unported/guestbook/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/guestbook/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -7,11 +7,11 @@
 
 Install:
 1. Copy whole plugin into your plog plugin directory.
-2. Configurate your Guest Book plugin in your pLog control center
+2. Configurate your Guest Book plugin in your LifeType control center
 3. Use $guestbook->pluginTemplatePage() to get guest book template page url
 
 Usage:
-Use the following method to call your pLog Flickr Plugin Page
+Use the following method to call your LifeType Flickr Plugin Page
 
 1. http://your-plog/index.php?op=Guestbook&blogId=1
 

Modified: plugins/trunk/unported/jsdictionary/docs/readme.html
===================================================================
--- plugins/trunk/unported/jsdictionary/docs/readme.html	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/jsdictionary/docs/readme.html	2006-08-14 16:48:40 UTC (rev 3877)
@@ -46,7 +46,7 @@
   <i>http://www.google.com/search?q=<b>%word%</b>&amp;ie=UTF-8&amp;oe=UTF-8&amp;hl=en</i><br/>
  </p>
  <p>
-  This plugin has been written by the pLog team. Please report any problems using it using the forums at <a href="http://www.lifetype.net/forums">
+  This plugin has been written by the LifeType team. Please report any problems using it using the forums at <a href="http://www.lifetype.net/forums">
   www.lifetype.net/forums</a>
  </p>
  </body>

Modified: plugins/trunk/unported/jsdictionary/pluginjsdictionary.class.php
===================================================================
--- plugins/trunk/unported/jsdictionary/pluginjsdictionary.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/jsdictionary/pluginjsdictionary.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -146,7 +146,7 @@
                              <br/><br/>
                              Please remember that this plugin needs a Javascript 1.2-compatible browser in order to
                              work properly.";
-            $this->author = "The pLog team";
+            $this->author = "The LifeType team";
         }
 
         /**

Modified: plugins/trunk/unported/logger/pluginlogger.class.php
===================================================================
--- plugins/trunk/unported/logger/pluginlogger.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/logger/pluginlogger.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -19,7 +19,7 @@
 			// set the plugin information
 			$this->id = "logger";
 			$this->desc = "A logging plugin";
-			$this->author = "The pLog Team";
+			$this->author = "The LifeType Project";
 			$this->locales = Array();
 			
 			// register all the events available, but we can use the PluginManager

Modified: plugins/trunk/unported/ploghaiku/README
===================================================================
--- plugins/trunk/unported/ploghaiku/README	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/ploghaiku/README	2006-08-14 16:48:40 UTC (rev 3877)
@@ -1,7 +1,7 @@
 
 PlogHaiku  v0.2
 
-This simple plugin provides a method to display randomly generated Haiku on your pLog Blog...  See the bottom for versioning and To Do
+This simple plugin provides a method to display randomly generated Haiku on your LifeType Blog...  See the bottom for versioning and To Do
 
 This template code should be used to display a Haiku
 --

Modified: plugins/trunk/unported/port/pluginport.class.php
===================================================================
--- plugins/trunk/unported/port/pluginport.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/port/pluginport.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -4,7 +4,7 @@
 *
 *   This plugin is used to port entries from one software to another.  Simply select the
 *   appropriate port "profile" and fill in the required information to port your MT/bBlog/etc
-*   posts, comments, and categories into pLog's db tables. 
+*   posts, comments, and categories into LifeType's db tables. 
 *
 *   Concept by Dario Nuevo (http://www.lifetype.net/forums/viewtopic.php?t=617&highlight=bblog)
 *   

Modified: plugins/trunk/unported/remembercommentdata/readme.txt
===================================================================
--- plugins/trunk/unported/remembercommentdata/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/remembercommentdata/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -6,7 +6,7 @@
 This plugin makes the blog "remember" the personal information users enter on the comments form.
 
 Install:
-1. Configurate your Remember Comment Data plugin in your pLog control center
+1. Configurate your Remember Comment Data plugin in your LifeType control center
 
 
 Usage:

Modified: plugins/trunk/unported/secret/pluginsecret.class.php
===================================================================
--- plugins/trunk/unported/secret/pluginsecret.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/secret/pluginsecret.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -18,7 +18,7 @@
             $this->id = "secret";
             $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";
+            $this->author = "The LifeType Project";
             
             $this->init();
         }

Modified: plugins/trunk/unported/secret/readme.txt
===================================================================
--- plugins/trunk/unported/secret/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/secret/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -1,9 +1,9 @@
 Plugin: Secret
-Author: pLog Team
+Author: LifeType Team
 Release Date: 2005/01/23
 Version: 1.0
 
 This plugin offers the password protect to specific articles, unless user provide the right password or they can not see the articles.
 
 Install:
-1. Configurate your Secret plugin in your pLog control center
\ No newline at end of file
+1. Configurate your Secret plugin in your LifeType control center
\ No newline at end of file

Modified: plugins/trunk/unported/secretblog/pluginsecretblog.class.php
===================================================================
--- plugins/trunk/unported/secretblog/pluginsecretblog.class.php	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/secretblog/pluginsecretblog.class.php	2006-08-14 16:48:40 UTC (rev 3877)
@@ -11,7 +11,7 @@
 			$this->PluginBase();
 			
 			$this->id = "secretblog";
-			$this->author = "The pLog Team";
+			$this->author = "The LifeType Project";
 			
 			// we only need to register a filter
             $this->registerFilter( "SecretBlogFilter" );

Modified: plugins/trunk/unported/shoutbox/README.txt
===================================================================
--- plugins/trunk/unported/shoutbox/README.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/unported/shoutbox/README.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -54,7 +54,7 @@
 and replace every occurrence of $shoutboxPlugin to $shoutbox
 
 DOESN'T WORK? BUGS? WISHES? WHO TO CONTACT
-Please, use the pLog's bug reporting system. It's located at:
+Please, use the LifeType's bug reporting system. It's located at:
 http://bugs.lifetype.net
 Otherwise, send me a mail: radar at netpalantir.it
 I must admit I don't read the LifeType forum regularly, so if you post there, please

Modified: plugins/trunk/validatetrackback/readme.txt
===================================================================
--- plugins/trunk/validatetrackback/readme.txt	2006-08-14 16:28:38 UTC (rev 3876)
+++ plugins/trunk/validatetrackback/readme.txt	2006-08-14 16:48:40 UTC (rev 3877)
@@ -6,4 +6,4 @@
 Provides validation of trackbacks.
 
 Install:
-1. Configurate your Validate Trackback plugin in your pLog control center
\ No newline at end of file
+1. Configurate your Validate Trackback plugin in your LifeType control center
\ No newline at end of file



More information about the pLog-svn mailing list