diff options
author | Arun Persaud <arun@nubati.net> | 2008-05-12 22:59:21 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-05-12 22:59:21 -0700 |
commit | 20e3c8c8c7b1faae94ca28c73537c35b543971fb (patch) | |
tree | ff95386595f90844d2f9e6bb63de274cd885bbb0 /include/functions.php | |
parent | 5973166a4b936e2f8e2d923bc6dcb8bc3db89d85 (diff) | |
download | e-DoKo-20e3c8c8c7b1faae94ca28c73537c35b543971fb.tar.gz e-DoKo-20e3c8c8c7b1faae94ca28c73537c35b543971fb.tar.bz2 e-DoKo-20e3c8c8c7b1faae94ca28c73537c35b543971fb.zip |
BUGFIX: some variables where not defined after moving some code around
forgot to add some variables as globals, while moving code to a function.
Signed-off-by: Arun Persaud <arun@nubati.net>
Diffstat (limited to 'include/functions.php')
-rw-r--r-- | include/functions.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/functions.php b/include/functions.php index 31f9ba8..dca9640 100644 --- a/include/functions.php +++ b/include/functions.php @@ -664,6 +664,7 @@ function can_call($what,$hash) function display_table () { global $gameid, $GT, $debug,$INDEX,$defaulttimezone; + global $RULES,$GAME,$gametype; $result = DB_query("SELECT User.fullname as name,". " Hand.position as position, ". |