]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Locale error message, clean up {}, Verified under 1.0.x && php 5.3
authorEric Helgeson <erichelgeson@gmail.com>
Sat, 7 Aug 2010 04:07:34 +0000 (23:07 -0500)
committerEric Helgeson <erichelgeson@gmail.com>
Sat, 7 Aug 2010 04:07:34 +0000 (23:07 -0500)
plugins/Recaptcha/RecaptchaPlugin.php

index 7cc34c56863dcf1702e036857fbe678a48b30124..b7a0e92c7f4500a38bcab5c6d6c177e9320ddd8b 100644 (file)
@@ -41,7 +41,8 @@ class RecaptchaPlugin extends Plugin
     var $failed;
     var $ssl;
 
-    function onInitializePlugin(){
+    function onInitializePlugin()
+    {
         if(!isset($this->private_key)) {
             common_log(LOG_ERR, 'Recaptcha: Must specify private_key in config.php');
         }
@@ -50,7 +51,8 @@ class RecaptchaPlugin extends Plugin
         }
     }
 
-    function checkssl(){
+    function checkssl()
+    {
         if(common_config('site', 'ssl') === 'sometimes' || common_config('site', 'ssl') === 'always') {
             return true;
         }
@@ -102,7 +104,7 @@ class RecaptchaPlugin extends Plugin
             if($this->display_errors) {
                 $action->showForm ("(reCAPTCHA error: " . $resp->error . ")");
             }
-            $action->showForm("Captcha does not match!");
+            $action->showForm(_m("Captcha does not match!"));
             return false;
         }
     }
@@ -118,4 +120,4 @@ class RecaptchaPlugin extends Plugin
                                'captcha to the registration page.'));
         return true;
     }
-}
+}
\ No newline at end of file