summaryrefslogtreecommitdiffstats
path: root/include/newgame.php
AgeCommit message (Collapse)AuthorFilesLines
2015-10-04BUGFIX: fix mysql insert statements (null values for timestamps didn't work ↵Arun Persaud1-3/+3
anymore) a dreamhost update to a newer sql version changed the default behavior for null inserts for timestamps. They don't insert the current timestamp anymore when a config option for mysql is set (which seems to be the case). solution: instead of inserting null always insert current_timestamp
2014-01-05updated copyright to 2014Arun 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-19/+23
2012-02-10updated copyright notice for 2012Arun Persaud1-1/+1
2011-11-19LAYOUT, BUGFIX: don't show current game in "it's your turn" list, also fix ↵Arun Persaud1-1/+1
layout for this on newgame.php
2011-03-20CLEANUP: added gameid to mymail and generate subject line in mymail directlyArun Persaud1-5/+4
this way it will be easier to add translation and also to add the gameid into the database for the digest
2010-06-06removed hardcoded reference to wiki and replaced with variable from config.phpArun Persaud1-2/+1
2010-03-13NEW FEATURE: having only low trump (fox and below) can now be a VorbehaltArun Persaud1-2/+3
The low trump can either be treated as poverty or similar to 5 nines, that is the game is canceled unless someone plays a solo. Also minor code cleanup.
2010-02-06added copyright notice and GPL referenceArun Persaud1-0/+19
2009-05-11BUGFIX: some email messages had newlines missing before the footerArun Persaud1-5/+5
all emails now have a "\n\n" at the end of the message.
2009-04-29CLEANUP: all email now uses the standard header and footerArun Persaud1-6/+5
some email functions didn't use myemail, but used sendmail directly. This is now fixed and all emails should have the same header and footer.
2009-02-23CLEANUP: make emails more uniformArun Persaud1-8/+5
provide a standard header and footer. Also prepare for emails to be send to the database for later delivery.
2009-01-26CLEANUP: removed a debug messageArun Persaud1-2/+2
just a small cleanup.
2009-01-17BUGFIX: wrong order of arguments for in_array functionArun Persaud1-1/+1
just need to switch them... should be ok now.
2009-01-15NEW FEATURE: new user settings allows people to not be available for new gamesArun Persaud1-1/+11
Players who set their preference on this setting to 'no' are not considered as players in a new game.
2008-10-20BUGFIX: make user menu and personal notes appear againArun Persaud1-2/+2
had them only shown when player was logged in, but there is really no reason to not show them to players who are not logged in in an ongoing game (only the correct player should get to a page with an ongoing game) Signed-off-by: Arun Persaud <arun@nubati.net>
2008-07-11BUGFIX: added email-list name to invitation emailsArun Persaud1-13/+17
all emails subject should have the list header in them, forgot to add it to the ones that are sent out when starting a new game. Also renamed a variable for more consistency. Signed-off-by: Arun Persaud <arun@nubati.net>
2008-06-16NEW FEATURE: login buttonArun Persaud1-16/+5
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-22LAYOUT: added user menu to newgame page also when you started a gameArun Persaud1-28/+38
once you started a game you only got a message telling you that, but no way to get back to your user page with all the links. Signed-off-by: Arun Persaud <arun@nubati.net>
2008-05-06CLEANUP: removed all calls to mysql functions and replaced them with calls ↵Arun Persaud1-23/+23
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-11/+175
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/+22
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>