A *lot* more code-cleanups, errors in CSS fixed (missing brackets) and frameset suppo...
[mailer.git] / inc / libs / rallye_functions.php
index b4985782130466c6f8941ab4d03de1b6a2bdc8fe..799c896f7aab3b3a260f92ef74017bd0a6e8424f 100644 (file)
@@ -160,7 +160,7 @@ function RALLYE_ADD_PRICES($rallye,$mode="email")
        switch($mode)
        {
                case "email": $mode = "\n";     break;
-               case "html" : $mode = "<BR>\n"; break;
+               case "html" : $mode = "<br />\n"; break;
        }
 
        // Load prices
@@ -786,7 +786,7 @@ function RALLYE_GET_REFCOUNT($uid, $old=0)
                                        {
                                                // Level does exist so abort here
                                                $cnt = $REF_SYSTEM['counter'][$id];
-                                               //* DEBUG: */ echo "*".$uid."/".$cnt."*<BR>";
+                                               //* DEBUG: */ echo "*".$uid."/".$cnt."*<br />";
                                                break;
                                        }
                                         elseif ($level > 0)
@@ -810,7 +810,7 @@ function RALLYE_GET_REFCOUNT($uid, $old=0)
                        $CONFIG['cache_hits']++;
 
                        // Remove old refs
-                       //* DEBUG: */ echo "+".$cnt."/".$old."+<BR>";
+                       //* DEBUG: */ echo "+".$cnt."/".$old."+<br />";
                        $cnt -= $old;
                }
        }
@@ -835,7 +835,7 @@ WHERE s.userid=%d AND s.level=0", array(bigintval($uid)), __FILE__, __LINE__);
        }
 
        // Return count
-       //* DEBUG: */ echo "*".$uid."/".$old."/".$cnt."*<BR>";
+       //* DEBUG: */ echo "*".$uid."/".$old."/".$cnt."*<br />";
        return $cnt;
 }
 //