summaryrefslogtreecommitdiffstats
path: root/include/cancelgame.php
AgeCommit message (Collapse)AuthorFilesLines
2013-02-25mysql optimization: don't quote integers as strings in WHEREArun Persaud1-1/+1
2013-01-12updated copyright for 2013Arun Persaud1-1/+1
2013-01-12fixed more language settings in email; marked more strings for translationArun Persaud1-6/+8
2012-10-06starting to bootstrap the layout: navbar and tricksArun Persaud1-3/+0
- changing the tricks-selector to a paginator and fixing the js for highlighting - adding a navbar using bootstrap, probably should use .wrap more instead of adding divs to the code
2012-02-10updated copyright notice for 2012Arun Persaud1-1/+1
2011-03-20CLEANUP: added gameid to mymail and generate subject line in mymail directlyArun Persaud1-2/+1
this way it will be easier to add translation and also to add the gameid into the database for the digest
2010-02-06added copyright notice and GPL referenceArun Persaud1-0/+19
2009-05-11BUGFIX: one email message still had a hard-coded headerArun Persaud1-2/+1
this resulted in two "hello" lines being sent out. fixed
2009-05-11BUGFIX: some email messages had newlines missing before the footerArun Persaud1-1/+1
all emails now have a "\n\n" at the end of the message.
2009-03-29BUGFIX: store canceled games, don't delete themArun Persaud1-2/+2
deleting the games could result in the same people getting the same hand redealt over and over again. By just keeping track of the hands in the game table, this problem should be gone. Fixed issue #50.
2009-02-23CLEANUP: make emails more uniformArun Persaud1-2/+2
provide a standard header and footer. Also prepare for emails to be send to the database for later delivery.
2008-08-17CLEANUP: some more comments, also removed some debug messagesArun Persaud1-2/+5
Signed-off-by: Arun Persaud <arun@nubati.net>
2008-06-16NEW FEATURE: login buttonArun Persaud1-6/+2
added a login button to the top right, in case you were not logged in. output_status can now be called in only one place, ie index.php and all pages will get the menu... Signed-off-by: Arun Persaud <arun@nubati.net>
2008-05-06CLEANUP: removed all calls to mysql functions and replaced them with calls ↵Arun Persaud1-2/+1
to DB_xxx should be very easy now to change to a different database. also made the code look nicer ;) Signed-off-by: Arun Persaud <arun@nubati.net>
2008-04-26CLEANUP: cleaned up index.php a bit more by introducing an 'action' variableArun Persaud1-0/+8
no more if, but one nice switch statement in index.php Signed-off-by: Arun Persaud <arun@nubati.net>
2008-04-26CLEANUP: make index.php very short and move everything in separate filesArun Persaud1-0/+53
created an include dir and almost everything that was in index.php is now in separate files and gets only included in index.php... makes index.php look a lot nicer ;) Signed-off-by: Arun Persaud <arun@nubati.net>