[pLog-svn] r4529 - plugins/branches/lifetype-1.1/authimage/class/security

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Thu Jan 11 00:52:13 GMT 2007


Author: jondaley
Date: 2007-01-11 00:52:12 +0000 (Thu, 11 Jan 2007)
New Revision: 4529

Modified:
   plugins/branches/lifetype-1.1/authimage/class/security/authimagefilter.class.php
Log:
fixed a typo in a comment

Modified: plugins/branches/lifetype-1.1/authimage/class/security/authimagefilter.class.php
===================================================================
--- plugins/branches/lifetype-1.1/authimage/class/security/authimagefilter.class.php	2007-01-11 00:48:07 UTC (rev 4528)
+++ plugins/branches/lifetype-1.1/authimage/class/security/authimagefilter.class.php	2007-01-11 00:52:12 UTC (rev 4529)
@@ -58,9 +58,10 @@
             $encrypt = $this->encrypt($code, $key);
             $tempFile = $cacheFolder."/".$encrypt.".gif";
            	if ( !File::exists( $tempFile ) ) {
-               	// if there is a match, we can quit and reject this request
+               	// if there isn't a match, we can quit and reject this request
                 $locale = $blogInfo->getLocale();
-                $result = new PipelineResult( false, AUTHIMAGE_FILTER_MATCH_FOUND, $locale->tr("error_authimage_code") );
+                $result = new PipelineResult( false, AUTHIMAGE_FILTER_MATCH_FOUND,
+                                              $locale->tr("error_authimage_code") );
                 return $result;
             }
             



More information about the pLog-svn mailing list