diff options
author | TheTroll <trolldev@gmail.com> | 2010-02-22 21:58:26 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-02-22 21:58:26 +0100 |
commit | e897147a3acb1ca4baacf0f5fec976a0ea8c90ee (patch) | |
tree | 630cccd498bf07f43d69e5161f831ba4cbfa03d9 /includes/include.php | |
parent | 06f7a094d0aef395f7bcf6123f2678b1cf48429e (diff) | |
download | istreamdev-e897147a3acb1ca4baacf0f5fec976a0ea8c90ee.tar.gz istreamdev-e897147a3acb1ca4baacf0f5fec976a0ea8c90ee.tar.bz2 |
Fixed timers edit
Add new timer link to edit timer
Timers are not yet settable though
Diffstat (limited to 'includes/include.php')
-rwxr-xr-x | includes/include.php | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/includes/include.php b/includes/include.php index 4810227..46e758f 100755 --- a/includes/include.php +++ b/includes/include.php @@ -48,9 +48,6 @@ function selectpage() case ("timers"): gen_timers(); break; - case ("new_timer"): - gen_new_timer(); - break; case ("edit_timer"): gen_edit_timer(); break; @@ -111,13 +108,9 @@ function gen_timers() { include('includes/inc_timers.php'); } -function gen_new_timer() -{ - include('new_timer.html'); -} function gen_edit_timer() { - include('edit_timer.html'); + include('includes/inc_edittimer.php'); } |