fix PHP 5.4 static warnings
authorDonald A. Lobo <lobo@civicrm.org>
Wed, 1 May 2013 18:24:45 +0000 (11:24 -0700)
committerColeman Watts <coleman@civicrm.org>
Thu, 30 May 2013 05:11:52 +0000 (22:11 -0700)
CRM/Contribute/PseudoConstant.php
CRM/Event/PseudoConstant.php
CRM/Grant/PseudoConstant.php
CRM/Member/PseudoConstant.php

index fe69660b55ab6bb737092c0b73f9fa7f526e9e6c..9b8302e613e88089c0423f0cdbeb73a1585b3693 100644 (file)
@@ -184,7 +184,7 @@ class CRM_Contribute_PseudoConstant extends CRM_Core_PseudoConstant {
    * @param boolean $name pseudoconstant to be flushed
    *
    */
-  public static function flush($name) {
+  public static function flush($name = 'cache') {
    if (isset(self::$$name)) {
       self::$$name = NULL;
     }
index cd7a5ef13ae0a9350b89621b14503eafff412463..a38cfaaba67625251efecadacc4f613c46468601 100644 (file)
@@ -275,7 +275,7 @@ class CRM_Event_PseudoConstant extends CRM_Core_PseudoConstant {
    * @param boolean $name pseudoconstant to be flushed
    *
    */
-  public static function flush($name) {
+  public static function flush($name = 'cache') {
    if (isset(self::$$name)) {
       self::$$name = NULL;
     }
index 951ac2d15d24d08a8154cd89f500ffd1cca1ab58..baa84dfca9aa5dabdeda140a998620bf9b137d67 100644 (file)
@@ -107,7 +107,7 @@ class CRM_Grant_PseudoConstant extends CRM_Core_PseudoConstant {
    * @param boolean $name pseudoconstant to be flushed
    *
    */
-  public static function flush($name) {
+  public static function flush($name = 'cache') {
    if (isset(self::$$name)) {
       self::$$name = NULL;
     }
index 8b50539645f72d8d21597b5ab1bfd48b32a91ea5..b9fd5a5b18e41c2ada9cff4396557ec4380367df 100644 (file)
@@ -125,7 +125,7 @@ class CRM_Member_PseudoConstant extends CRM_Core_PseudoConstant {
    * @param boolean $name pseudoconstant to be flushed
    *
    */
-  public static function flush($name) {
+  public static function flush($name = 'cache') {
    if (isset(self::$$name)) {
       self::$$name = NULL;
     }