diff --git a/common.inc.php b/common.inc.php index 8c49b35f..8a7064fd 100644 --- a/common.inc.php +++ b/common.inc.php @@ -26,7 +26,7 @@ // ////echo phpinfo(); header('Content-Type: text/html; charset=utf8'); -include_once ('helper.inc.php'); +include_once('helper.inc.php'); // set error reporting to not show notices, for some reason some people's installation dont set this by default // so we will set it in the code instead just to make sure error_reporting(E_ALL); @@ -70,7 +70,7 @@ if (!is_writable($prependdir . 'data')) { } if (file_exists($prependdir . 'data/config.inc.php')) { - require_once ($prependdir . 'data/config.inc.php'); + require_once($prependdir . 'data/config.inc.php'); } else { echo '
-
- global $pdo;
- // if the date is greater than the date/time that the confirmed participants gets posted,
- // then we will show the registration confirmation page as a link in the menu,
- $registrationconfirmationlink = '';
+
Debug...
+
+
+
+
+
+
+
+ }
+
+ function send_popup_header($title = '')
+ {
+ global $HEADER_SENT;
+ global $config;
+
+ // do this so we can use send_header() a little more loosly and not worry about it being sent more than once.
+ if ($HEADER_SENT)
+ return;
+ else
+ $HEADER_SENT = true;
+
+ echo "\n";
?>
--
' . i18n($title) . ''; + } + + function send_popup_footer() + { + ?> ++ + + Debug...
+
+
+
+
+
- if (get_value_from_session('users_type') == 'committee') {
- echo "
-
- if (count($config['languages']) > 1) {
- echo '
-
- echo "'; - echo ''; - } + function emit_month_selector($name, $selected = '') + { + echo "
| - + function emit_day_selector($name, $selected = '') + { + echo " |
'; + emit_hour_selector($name . '_hour', $hour); + echo ' | '; + emit_minute_selector($name . '_minute', $minute); + echo ' |
'; - emit_year_selector($name . '_year', $year); - echo ' | '; - emit_month_selector($name . '_month', $month); - echo ' | '; - emit_day_selector($name . '_day', $day); - echo ' |
'; - emit_hour_selector($name . '_hour', $hour); - echo ' | '; - emit_minute_selector($name . '_minute', $minute); - echo ' |