Follow the steps below to upgrade Users Online 1.1 to 1.1a.

Header Section

Find:
** Version: 1.1                    **

Replace with:
** Version: 1.1a                   **


Variables Section

Caution: These variables could/should have been changed. So look for context instead of exact text.
Find:
$word[0] = "1 user online";    // Word for online. For one user.

Replace with:
$word[0] = "1 user online";    // Word for online. For one user. {c} = 1


Find:
$word[1] = " users online";    // Word for online. For over one user.

Replace with:
$word[1] = "{c} users online";    // Word for online. For over one user. {c} = Online Count



"Do not edit" Section

Find:
$action = $_GET["action"];

Add after:

if(isset($_GET["page"]) && !empty($_GET["page"])) $_SERVER["HTTP_REFERER"] = urldecode($_GET["page"]);



Find:
$version = "1.1";

Replace with:
$version = "1.1a";


Find:
if($count == 0) $count = "0".$word[1];
else if(
$count == 1) $count = $word[0];
else if(
$count > 1) $count = $count.$word[1];

Replace with:
if($count == 0) $count = str_replace("{c}", "0", $word[1]);
else if(
$count == 1) $count = str_replace("{c}", "1", $word[0]);
else if(
$count > 1) $count = str_replace("{c}", $count, $word[1]);


Find:
   $temp2 = str_replace("{color}", $color[$c], $temp2);
   
$c++;
   if(
$c >= count($color)) $c = 0;

Replace with:
   if(isset($color[$c])){
    
$temp2 = str_replace("{color}", $color[$c], $temp2);
    
$c++;
    if(
$c >= count($color)) $c = 0;
   }


If followed exactly, it will even turn out to be the same filesize as the downloadable one. Make sure that if your browser copies the line breaks, for when the code is finished, it is recommended that you do not remove them unless you know what you are doing.