diff options
author | Arun Persaud <arun@nubati.net> | 2014-03-08 22:02:34 -0800 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2014-03-08 22:26:07 -0800 |
commit | 72bdb543759b5ffbdf5c2cc71294ad4f1f2996b2 (patch) | |
tree | af2457b688e17c1709b5d2d45826a8379393abf1 /include/user.php | |
parent | 742ba18eaf36386d2d0e0936975b3f2545afc59e (diff) | |
download | e-DoKo-72bdb543759b5ffbdf5c2cc71294ad4f1f2996b2.tar.gz e-DoKo-72bdb543759b5ffbdf5c2cc71294ad4f1f2996b2.tar.bz2 e-DoKo-72bdb543759b5ffbdf5c2cc71294ad4f1f2996b2.zip |
updated css/js libraries
* bootstrap 3.1.1
* jquery 2.1.0
* less 1.7.0
mostly bootstrap had to be adjusted, e.g. different names like hero-unit->jumbotron, etc.
Diffstat (limited to 'include/user.php')
-rw-r--r-- | include/user.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/user.php b/include/user.php index ef63e43..764c694 100644 --- a/include/user.php +++ b/include/user.php @@ -204,8 +204,8 @@ else /* create output */ $sessionoutput .= $gameoutput; - $gameoutput = " <span class=\"gamestatusover \"><a href=\"".$INDEX."?action=game&me=".$myhash."\">" - .$gamefrequence."</a></span>\n"; + $gameoutput = " <a class=\"gamestatusover\" href=\"".$INDEX."?action=game&me=".$myhash."\">" + .$gamefrequence."</a>\n"; } else { /* new session */ @@ -218,13 +218,13 @@ else { $output_active .= "<li> "; if($gamestatus == 'pre') - $output_active .= '<span class="gamestatuspre gameid">'; + $class= 'class="gamestatuspre gameid"'; else if($gamestatus == 'play') - $output_active .= '<span class="gamestatusplay gameid">'; + $class= 'class="gamestatusplay gameid"'; else - $output_active .= '<span class="gamestatusover gameid">'; - $output_active .= "<a href=\"$INDEX?action=game&me=$myhash\">". - DB_format_gameid($gameid).'</a></span> '; + $class= 'class="gamestatusover gameid"'; + $output_active .= "<a $class href=\"$INDEX?action=game&me=$myhash\">". + DB_format_gameid($gameid).'</a> '; |