summaryrefslogtreecommitdiffstats
path: root/register.php
AgeCommit message (Collapse)AuthorFilesLines
2008-04-26CLEANUP: make index.php very short and move everything in separate filesArun Persaud1-3/+3
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>
2008-04-07BUGFIX: adding new users was brokenArun Persaud1-1/+1
forgot to update the insert statement for the db when changing the user table a while ago. fixed now. Signed-off-by: Arun Persaud <arun@nubati.net>
2008-04-07CLEANUP: started some database cleanup and added some more commentsArun Persaud1-2/+2
instead of having a different function for each possible way to query for example the full name of a player, there is now only one function with a switch statement that handles the different cases. Still not 100% perfect, but I think nicer to read than before. Signed-off-by: Arun Persaud <arun@nubati.net>
2007-12-17BUGFIX: use of local web links now possibleArun Persaud1-1/+2
before I used a lot of http:// requests although the files were in the same domain, now local links with absolute paths are used.
2007-12-16BUGFIX: time display used wrong timezones. also optimized things a bitArun Persaud1-3/+4
Got rid of a few db-queries for getting the right timezone. The timezone was also set after the timefunction was called and therefore the timezone didn't have any effect.
2007-07-28CLEANUP: moved registration to seperate php fileArun Persaud1-0/+98
started cleanup on index.php. trying to move as much out of index.php as possible to make it easier to read.