From: Maxious Date: Fri, 25 Nov 2011 09:14:32 +0000 Subject: Merge branch 'master' of github.com:maxious/ACTBus-ui X-Git-Url: http://maxious.lambdacomplex.org/git/?p=busui.git&a=commitdiff&h=e1b2303583fe16203379d6e65c848e4823bfa971 --- Merge branch 'master' of github.com:maxious/ACTBus-ui --- --- a/servicealerts/index.php +++ b/servicealerts/index.php @@ -2,12 +2,17 @@ include ('../include/common.inc.php'); include_header("Service Alerts", "index"); +echo ''; + ?> +Active and Future Alerts: + + '; + } + ?> +
{$alert['header']}" . substr($alert['description'], 0, 999) . 'View
+{$alert['header']} +

From ".date("c",$alert['start'])." to ".date("c",$alert['end'])."

+{$alert['description']}
+Source: {$alert['url']}
"; + echo "Informed Entities for ID {$_REQUEST['view']}:"; + echo ''; + foreach (getInformedAlerts($_REQUEST['view'], "", "") as $informed) { + echo "'; + } + echo '
{$informed['informed_class']}{$informed['informed_id']}{$informed['informed_action']}" . '
'; +} +include_footer(); +?>