Corrections as per colemanw's review.
authorDmitry Smirnov <onlyjob@member.fsf.org>
Sun, 3 May 2015 04:19:24 +0000 (14:19 +1000)
committerDmitry Smirnov <onlyjob@member.fsf.org>
Sun, 3 May 2015 20:51:05 +0000 (06:51 +1000)
CRM/Contact/BAO/GroupNestingCache.php
CRM/Core/Controller.php
CRM/Core/DAO.php
CRM/Group/Form/Edit.php
CRM/Report/Form/Contribute/Sybunt.php
CRM/Utils/Rule.php
CRM/Utils/String.php

index dfaa529f10bf69ea47e064092337436d815cc43b..49cc6d72878f7552dba993ce0d8700d54b5c4a77 100644 (file)
@@ -69,7 +69,7 @@ WHERE  n.child_group_id  = gc.id
     }
 
     if (self::checkCyclicGraph($tree)) {
-      CRM_Core_Error::fatal(ts('We detected a cycle which we can't handle. aborting'));
+      CRM_Core_Error::fatal(ts("We detected a cycle which we can't handle. aborting"));
     }
 
     // first reset the current cache entries
index 0e30d6172f509b7ad8c8cd48029e6924b1b6a9ec..2173882c911031a7444e3466e7e6a4156405fef7 100644 (file)
@@ -855,7 +855,7 @@ class CRM_Core_Controller extends HTML_QuickForm_Controller {
   }
 
   public function invalidKeyCommon() {
-    $msg = ts('We can\'t load the requested web page. This page requires cookies to be enabled in your browser settings. Please check this setting and enable cookies (if they are not enabled). Then try again. If this error persists, contact the site administrator for assistance.') . '<br /><br />' . ts('Site Administrators: This error may indicate that users are accessing this page using a domain or URL other than the configured Base URL. EXAMPLE: Base URL is http://example.org, but some users are accessing the page via http://www.example.org or a domain alias like http://myotherexample.org.') . '<br /><br />' . ts('Error type: Could not find a valid session key.');
+    $msg = ts("We can't load the requested web page. This page requires cookies to be enabled in your browser settings. Please check this setting and enable cookies (if they are not enabled). Then try again. If this error persists, contact the site administrator for assistance.") . '<br /><br />' . ts('Site Administrators: This error may indicate that users are accessing this page using a domain or URL other than the configured Base URL. EXAMPLE: Base URL is http://example.org, but some users are accessing the page via http://www.example.org or a domain alias like http://myotherexample.org.') . '<br /><br />' . ts('Error type: Could not find a valid session key.');
     CRM_Core_Error::fatal($msg);
   }
 
index 17a94514120af33e0f0359946c7d569d59a09dbd..e1038d7a0094f105891db4e1693b98fd210feaf3 100644 (file)
@@ -220,7 +220,7 @@ class CRM_Core_DAO extends DB_DataObject {
           break;
 
         case CRM_Utils_Type::T_TIME:
-          CRM_Core_Error::fatal('T_TIME shouldn't be used.');
+          CRM_Core_Error::fatal("T_TIME shouldn't be used.");
           //$object->$dbName='000000';
           //break;
         case CRM_Utils_Type::T_CCNUM:
index 097507511c85bc2ff7add237ef30b358473e172c..7143eb20c98f6a189a078f067281aa735c91e0d6 100644 (file)
@@ -84,7 +84,6 @@ class CRM_Group_Form_Edit extends CRM_Core_Form {
    * Set up variables to build the form.
    *
    * @return void
-   * @access protected
    */
   public function preProcess() {
     $this->_id = $this->get('id');
index c692f2da7d6820f65cc85f2c2eddd8340cdad5cc..e214895f7bb30302d3266abf6695b7a344e3278e 100644 (file)
@@ -514,17 +514,17 @@ class CRM_Report_Form_Contribute_Sybunt extends CRM_Report_Form {
     $previous_year = $current_year - 1;
     $previous_two_year = $current_year - 2;
     $previous_three_year = $current_year - 3;
-    $up to = $current_year - 4;
+    $upto = $current_year - 4;
 
     $interval[$previous_year] = $previous_year;
     $interval[$previous_two_year] = $previous_two_year;
     $interval[$previous_three_year] = $previous_three_year;
-    $interval["upto_{$up to}"] = "Up To {$up to}";
+    $interval["upto_{$upto}"] = "Up To {$upto}";
 
     foreach ($rows as $key => $row) {
-      $display["upto_{$up to}"]
-        = CRM_Utils_Array::value("upto_{$up to}", $display)
-        + CRM_Utils_Array::value("civicrm_upto_{$up to}", $row);
+      $display["upto_{$upto}"]
+        = CRM_Utils_Array::value("upto_{$upto}", $display)
+        + CRM_Utils_Array::value("civicrm_upto_{$upto}", $row);
       $display[$previous_year]
         = CRM_Utils_Array::value($previous_year, $display)
         + CRM_Utils_Array::value($previous_year, $row);
index a27cca4444a3540ad8045c5fb8125bd756d1dad5..f5b1df363f9f7e0c4ee4056614b1782e0bf37a85 100644 (file)
@@ -510,7 +510,7 @@ class CRM_Utils_Rule {
    */
   public static function boolean($value) {
     return preg_match(
-      '/(^(1|0)$)|(^(Y(es)?|N(o)?)$)|(^(T(rue)?|F(else)?)$)/i', $value
+      '/(^(1|0)$)|(^(Y(es)?|N(o)?)$)|(^(T(rue)?|F(alse)?)$)/i', $value
     ) ? TRUE : FALSE;
   }
 
index fd627a9b5bf107fbbe7a689572127fde3a2caca5..90a09b45343b24df507d1e29c5f0b86bae211996 100644 (file)
@@ -413,7 +413,7 @@ class CRM_Utils_String {
     if (preg_match('/^(y(es)?|t(rue)?|1)$/i', $str)) {
       return '1';
     }
-    elseif (preg_match('/^(n(o)?|f(else)?|0)$/i', $str)) {
+    elseif (preg_match('/^(n(o)?|f(alse)?|0)$/i', $str)) {
       return '0';
     }
     else {