diff options
author | Arun Persaud <arun@nubati.net> | 2008-05-10 12:15:35 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-05-10 12:35:20 -0700 |
commit | 880dfb2e715a3770de56fb525f5c90d28a6ccb4c (patch) | |
tree | a96db91d27a2a6e9202902d11a72462192187fca /include/register.php | |
parent | 9239ba22c382383cd258ad3f36b2bc0dc99664b2 (diff) | |
download | e-DoKo-880dfb2e715a3770de56fb525f5c90d28a6ccb4c.tar.gz e-DoKo-880dfb2e715a3770de56fb525f5c90d28a6ccb4c.tar.bz2 e-DoKo-880dfb2e715a3770de56fb525f5c90d28a6ccb4c.zip |
NEW FEATURE: new settings page, user can now change timezone
rewrote the settings page, timezone can now be changed, the user menu
shows up on the left on the pref page. Added a link to the pref-page in the left menu.
Signed-off-by: Arun Persaud <arun@nubati.net>
Diffstat (limited to 'include/register.php')
-rw-r--r-- | include/register.php | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/include/register.php b/include/register.php index 0dc204d..03be803 100644 --- a/include/register.php +++ b/include/register.php @@ -63,13 +63,9 @@ if(myisset("Rfullname","Remail","Rpassword","Rtimezone") ) </tr><tr> <td><label for="Rtimezone">Timezone:</label></td> <td> - <select id="Rtimezone" name="Rtimezone" size="1"> - <option value="Europe/London">Berlin</option> - <option value="Europe/Berlin">Berlin</option> - <option value="America/Vancouver">Berkeley</option> - <option value="Pacific/Auckland">Wellington</option> - </select> - (If your timezone is not listed, just select whatever you want and email the admin your correct time zone.) +<?php + output_select_timezone("Rtimezone"); +?> </td> </tr><tr> <td colspan="2"> <input type="submit" value="register" /></td> |