CODE STYLE

files modified:   events/eventList.php
                  events/eventsAjax.php
                  events/eventsCompleted.php
                  events/eventsDelete.php
                  events/eventsEdit.php
                  events/eventsEditAction.php
                  events/eventsNew.php
                  events/eventsNewAction.php
                  events/eventsPending.php
                  events/eventsSave.php
                  events/eventsSetupGraph.php
                  events/triggersSave.php
This commit is contained in:
Ralph Asendeteufrer
2012-10-18 14:36:10 -04:00
parent 69430f9778
commit 53ca0e8089
12 changed files with 14 additions and 3 deletions

View File

@@ -9,19 +9,19 @@ if ($t != 's') {
$t = 'm';
}
//when occurs, after time elapses or when starting
//when occurs, after time elapses or when starting
$o = isset( $_GET['o'] ) ? $_GET['o'] : 's';
if ($t != 's') {
$t = 'a';
}
//status
//status
$s = isset( $_GET['s'] ) ? $_GET['s'] : 'a';
if ($s != 'a') {
$s = 'i';
}
//timeUnit
//timeUnit
$timeunit = isset( $_GET['t'] ) ? $_GET['t'] : 'Days';
$timeunit = ucfirst( strtolower( $timeunit ) );