The following should work. Open /cadmin/online/menu_online.php in an editor and add before: PHP: $html -> makemenufooter(); the following: PHP: $results = $database -> dbquery( "SELECT online_user FROM " . DB_PREFIX . "esselbach_ct_online" ); echo "<div class=\"contentalt\"><strong>" . $database -> dbrows( $results ) . " users online</strong></div>";
Removed the following code: PHP: if( $admin_count == $admin_all ) { ( $rotate == "contentalt" ) ? $rotate = "contentclosealt" : $rotate = "contentclose" ; } and add before $html -> makemenufooter();: PHP: $results = $database -> dbquery( "SELECT online_user FROM " . DB_PREFIX . "esselbach_ct_online" ); echo "<div class=\"contentclose\"><strong>" . $database -> dbrows( $results ) . " users online</strong></div>";