Fix variable name
authorMichael M Slusarz <slusarz@curecanti.org>
Fri, 12 Jun 2009 17:22:09 +0000 (11:22 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Fri, 12 Jun 2009 17:22:09 +0000 (11:22 -0600)
framework/Util/lib/Horde/Util.php

index c0f6e46..a1cac7d 100644 (file)
@@ -358,7 +358,7 @@ class Horde_Util
          * browsers do not always honor the 'no-cache' header. */
         $browser = &Horde_Browser::singleton();
         if ($browser->hasQuirk('cache_same_url')) {
-            if (is_null(self::$randnum)) {
+            if (is_null(self::$_randnum)) {
                 self::$_randnum = base_convert(microtime(), 10, 36);
             }
             return self::addParameter($url, 'nocache', self::$_randnum, $encode);