Quote:
Originally Posted by shaynehammy
Why if i disable the games in admin do they still appear visable to all the users?
|
Try this,,
edit the casino.php file..
Find:
Code:
$result = $db->query_read("SELECT * FROM casino_games ORDER BY gamename");
while ($row = $db->fetch_array($result))
And replace with this
Code:
$result = $db->query_read("SELECT * FROM casino_games WHERE active = 1 ORDER BY gamename");
while ($row = $db->fetch_array($result))