diff --git a/app/conferences_active/conferences_active.php b/app/conferences_active/conferences_active.php index 30ad9bc7f8..89df8ff3c5 100644 --- a/app/conferences_active/conferences_active.php +++ b/app/conferences_active/conferences_active.php @@ -17,30 +17,38 @@ The Initial Developer of the Original Code is Mark J Crane - Portions created by the Initial Developer are Copyright (C) 2008-2012 + Portions created by the Initial Developer are Copyright (C) 2008-2019 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane James Rose */ -include "root.php"; -require_once "resources/require.php"; -require_once "resources/check_auth.php"; -if (permission_exists('conference_active_view')) { - //access granted -} -else { - echo "access denied"; - exit; -} + +//includes + include "root.php"; + require_once "resources/require.php"; + require_once "resources/check_auth.php"; + +//check permissions + if (permission_exists('conference_active_view')) { + //access granted + } + else { + echo "access denied"; + exit; + } //add multi-lingual support $language = new text; $text = $language->get(); -require_once "resources/header.php"; -?> \n"; -echo " \n"; -echo " "; -echo " ".$text['label-active'].""; -echo "

\n"; -echo " ".$text['description-active']."\n"; -echo " \n"; -echo " \n"; -echo "\n"; -echo "
\n"; -echo "
"; -echo "

"; +//page header + echo "\n"; + echo " \n"; + echo " \n"; + echo " \n"; + echo "
"; + echo " ".$text['label-active'].""; + echo "

\n"; + echo " ".$text['description-active']."\n"; + echo "
\n"; + echo "
\n"; + +//show the content + echo "
"; + echo "

"; + +//include the footer + require_once "resources/footer.php"; -require_once "resources/footer.php"; ?>