Fix login error for users with no theme
[squirrelmail.git] / include / init.php
CommitLineData
202bcbcc 1<?php
2
3/**
4 * init.php -- initialisation file
5 *
6 * File should be loaded in every file in src/ or plugins that occupate an entire frame
7 *
8 * @copyright &copy; 2006 The SquirrelMail Project Team
9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
10 * @version $Id$
11 * @package squirrelmail
12 */
13
202bcbcc 14/**
15 * This is a development version so in order to track programmer mistakes we
16 * set the error reporting to E_ALL
17 */
202bcbcc 18error_reporting(E_ALL);
19
20
6a2a6e44 21/**
22 * If register_globals are on, unregister globals.
a3b99374 23 * Second test covers boolean set as string (php_value register_globals off).
6a2a6e44 24 */
55dd9abf 25if ((bool) ini_get('register_globals') &&
a3b99374 26 strtolower(ini_get('register_globals'))!='off') {
6a2a6e44 27 /**
55dd9abf 28 * Remove all globals that are not reserved by PHP
29 * 'value' and 'key' are used by foreach. Don't unset them inside foreach.
6a2a6e44 30 */
55dd9abf 31 foreach ($GLOBALS as $key => $value) {
32 switch($key) {
33 case 'HTTP_POST_VARS':
34 case '_POST':
35 case 'HTTP_GET_VARS':
36 case '_GET':
37 case 'HTTP_COOKIE_VARS':
38 case '_COOKIE':
39 case 'HTTP_SERVER_VARS':
40 case '_SERVER':
41 case 'HTTP_ENV_VARS':
42 case '_ENV':
43 case 'HTTP_POST_FILES':
44 case '_FILES':
45 case '_REQUEST':
46 case 'HTTP_SESSION_VARS':
47 case '_SESSION':
48 case 'GLOBALS':
49 case 'key':
50 case 'value':
51 break;
55dd9abf 52 default:
53 unset($GLOBALS[$key]);
54 }
6a2a6e44 55 }
55dd9abf 56 // Unset variables used in foreach
57 unset($GLOBALS['key']);
58 unset($GLOBALS['value']);
6a2a6e44 59}
60
d849b570 61/**
62 * Used as a dummy value, e.g., for passing as an empty
63 * hook argument.
64 */
086ad092 65global $null;
d849b570 66$null = NULL;
67
71efd1ed 68/**
69 * [#1518885] session.use_cookies = off breaks SquirrelMail
70 *
086ad092 71 * When session cookies are not used, all http redirects, meta refreshes,
72 * src/download.php and javascript URLs are broken. Setting must be set
71efd1ed 73 * before session is started.
74 */
75if (!(bool)ini_get('session.use_cookies') ||
76 ini_get('session.use_cookies') == 'off') {
77 ini_set('session.use_cookies','1');
78}
6a2a6e44 79
202bcbcc 80/**
81 * calculate SM_PATH and calculate the base_uri
82 * assumptions made: init.php is only called from plugins or from the src dir.
83 * files in the plugin directory may not be part of a subdirectory called "src"
84 *
85 */
86if (isset($_SERVER['SCRIPT_NAME'])) {
87 $a = explode('/',$_SERVER['SCRIPT_NAME']);
88} elseif (isset($HTTP_SERVER_VARS['SCRIPT_NAME'])) {
b0829edf 89 $a = explode('/',$HTTP_SERVER_VARS['SCRIPT_NAME']);
90} else {
91 $error = 'Unable to detect script environment. '
92 .'Please test your PHP settings and send PHP core config, $_SERVER '
93 .'and $HTTP_SERVER_VARS to SquirrelMail developers.';
94 die($error);
202bcbcc 95}
96$sSM_PATH = '';
97for($i = count($a) -2;$i > -1; --$i) {
98 $sSM_PATH .= '../';
99 if ($a[$i] === 'src' || $a[$i] === 'plugins') {
100 break;
101 }
102}
103
104$base_uri = implode('/',array_slice($a,0,$i)). '/';
105
202bcbcc 106define('SM_PATH',$sSM_PATH);
6a2a6e44 107define('SM_BASE_URI', $base_uri);
202bcbcc 108/**
109 * global var $bInit is used to check if initialisation took place.
110 * At this moment it's a workarounf for the include of addrbook_search_html
111 * inside compose.php. If we found a better way then remove this. Do only use
112 * this var if you know for sure a page can be called stand alone and be included
113 * in another file.
114 */
115$bInit = true;
116
8e1e2794 117/**
118 * This theme as a failsafe if no themes were found, or if we error
119 * out before anything could be initialised.
120 */
121$color = array();
122$color[0] = '#DCDCDC'; /* light gray TitleBar */
123$color[1] = '#800000'; /* red */
124$color[2] = '#CC0000'; /* light red Warning/Error Messages */
125$color[3] = '#A0B8C8'; /* green-blue Left Bar Background */
126$color[4] = '#FFFFFF'; /* white Normal Background */
127$color[5] = '#FFFFCC'; /* light yellow Table Headers */
128$color[6] = '#000000'; /* black Text on left bar */
129$color[7] = '#0000CC'; /* blue Links */
130$color[8] = '#000000'; /* black Normal text */
131$color[9] = '#ABABAB'; /* mid-gray Darker version of #0 */
132$color[10] = '#666666'; /* dark gray Darker version of #9 */
133$color[11] = '#770000'; /* dark red Special Folders color */
134$color[12] = '#EDEDED';
135$color[13] = '#800000'; /* (dark red) Color for quoted text -- > 1 quote */
136$color[14] = '#ff0000'; /* (red) Color for quoted text -- >> 2 or more */
137$color[15] = '#002266'; /* (dark blue) Unselectable folders */
138$color[16] = '#ff9933'; /* (orange) Highlight color */
139
202bcbcc 140require(SM_PATH . 'functions/global.php');
918fcc1d 141require(SM_PATH . 'functions/arrays.php');
5e68a08e 142
143/* load default configuration */
144require(SM_PATH . 'config/config_default.php');
145/* reset arrays in default configuration */
146$ldap_server = array();
147$plugins = array();
148$fontsets = array();
5e68a08e 149$aTemplateSet = array();
28294310 150$aTemplateSet[0]['ID'] = 'default';
151$aTemplateSet[0]['NAME'] = 'Default';
01fd1d1a 152
5e68a08e 153/* load site configuration */
202bcbcc 154require(SM_PATH . 'config/config.php');
5e68a08e 155/* load local configuration overrides */
156if (file_exists(SM_PATH . 'config/config_local.php')) {
157 require(SM_PATH . 'config/config_local.php');
158}
159
202bcbcc 160require(SM_PATH . 'functions/plugin.php');
161require(SM_PATH . 'include/constants.php');
162require(SM_PATH . 'include/languages.php');
42b5e8aa 163require(SM_PATH . 'class/template/Template.class.php');
5ab684a5 164require(SM_PATH . 'class/error.class.php');
202bcbcc 165
166/**
167 * If magic_quotes_runtime is on, SquirrelMail breaks in new and creative ways.
168 * Force magic_quotes_runtime off.
169 * tassium@squirrelmail.org - I put it here in the hopes that all SM code includes this.
170 * If there's a better place, please let me know.
171 */
172ini_set('magic_quotes_runtime','0');
173
174
175/* if running with magic_quotes_gpc then strip the slashes
176 from POST and GET global arrays */
177if (get_magic_quotes_gpc()) {
178 sqstripslashes($_GET);
179 sqstripslashes($_POST);
180}
181
202bcbcc 182
183/* strip any tags added to the url from PHP_SELF.
184This fixes hand crafted url XXS expoits for any
185 page that uses PHP_SELF as the FORM action */
186$_SERVER['PHP_SELF'] = strip_tags($_SERVER['PHP_SELF']);
187
188$PHP_SELF = php_self();
189
190/**
191 * Initialize the session
192 */
193
e8c4e350 194/** set the name of the session cookie */
195if (!isset($session_name) || !$session_name) {
196 $session_name = 'SQMSESSID';
197}
198
199/**
200 * if session.auto_start is On then close the session
1d537493 201 */
202$sSessionAutostartName = session_name();
bf6140e3 203$sCookiePath = null;
1d537493 204if ((isset($sSessionAutostartName) || $sSessionAutostartName == '') &&
205 $sSessionAutostartName !== $session_name) {
206 $sCookiePath = ini_get('session.cookie_path');
207 $sCookieDomain = ini_get('session.cookie_domain');
e8c4e350 208 // reset the cookie
1d537493 209 setcookie($sSessionAutostartName,'',time() - 604800,$sCookiePath,$sCookieDomain);
e8c4e350 210 @session_destroy();
211 session_write_close();
1d537493 212}
e8c4e350 213
202bcbcc 214/**
215 * includes from classes stored in the session
216 */
217require(SM_PATH . 'class/mime.class.php');
218
202bcbcc 219ini_set('session.name' , $session_name);
220session_set_cookie_params (0, $base_uri);
221sqsession_is_active();
222
5aed95be 223/**
224 * SquirrelMail internal version number -- DO NOT CHANGE
225 * $sm_internal_version = array (release, major, minor)
226 */
a895042a 227$SQM_INTERNAL_VERSION = explode('.', SM_VERSION, 3);
b37e457f 228$SQM_INTERNAL_VERSION[2] = intval($SQM_INTERNAL_VERSION[2]);
5aed95be 229
93d67e0d 230
086ad092 231/* if plugins are disabled only for one user and
93d67e0d 232 * the current user is NOT that user, turn them
233 * back on
234 */
235sqgetGlobalVar('username',$username,SQ_SESSION);
236if ($disable_plugins && !empty($disable_plugins_user)
237 && $username != $disable_plugins_user) {
238 $disable_plugins = false;
239}
240
241/* remove all plugins if they are disabled */
242if ($disable_plugins) {
243 $plugins = array();
244}
245
246
5aed95be 247/**
248 * Include Compatibility plugin if available.
249 */
93d67e0d 250if (!$disable_plugins && file_exists(SM_PATH . 'plugins/compatibility/functions.php'))
5aed95be 251 include_once(SM_PATH . 'plugins/compatibility/functions.php');
252
253/**
254 * MAIN PLUGIN LOADING CODE HERE
086ad092 255 * On init, we no longer need to load all plugin setup files.
5aed95be 256 * Now, we load the statically generated hook registrations here
257 * and let the hook calls include only the plugins needed.
258 */
259$squirrelmail_plugin_hooks = array();
93d67e0d 260if (!$disable_plugins && file_exists(SM_PATH . 'config/plugin_hooks.php')) {
5aed95be 261 require(SM_PATH . 'config/plugin_hooks.php');
262}
263
264/**
265 * allow plugins to override main configuration; hook is placed
266 * here to allow plugins to use session information to do their work
267 */
d849b570 268do_hook('config_override', $null);
5aed95be 269
202bcbcc 270/**
3464e1f4 271 * DISABLED.
202bcbcc 272 * Remove globalized session data in rg=on setups
086ad092 273 *
3464e1f4 274 * Code can be utilized when session is started, but data is not loaded.
086ad092 275 * We have already loaded configuration and other important vars. Can't
3464e1f4 276 * clean session globals here.
277if ((bool) @ini_get('register_globals') &&
278 strtolower(ini_get('register_globals'))!='off') {
202bcbcc 279 foreach ($_SESSION as $key => $value) {
280 unset($GLOBALS[$key]);
281 }
282}
3464e1f4 283*/
6a2a6e44 284
826ddd72 285sqsession_register(SM_BASE_URI,'base_uri');
6a2a6e44 286
202bcbcc 287/**
288 * Retrieve the language cookie
289 */
290if (! sqgetGlobalVar('squirrelmail_language',$squirrelmail_language,SQ_COOKIE)) {
291 $squirrelmail_language = '';
292}
293
202bcbcc 294/**
9e06a3ea 295 * Do something special for some pages. This is based on the PAGE_NAME constand
296 * set at the top of every page.
202bcbcc 297 */
9e06a3ea 298if ( !defined('PAGE_NAME') ) define('PAGE_NAME', NULL);
299switch (PAGE_NAME) {
086ad092 300 case 'style':
c4e5f61f 301
2b26084f 302 // need to get the right template set up
28294310 303 //
304 sqGetGlobalVar('templateid', $templateid, SQ_GET);
c4e5f61f 305
2b26084f 306 // sanitize just in case...
28294310 307 //
308 $templateid = preg_replace('/(\.\.\/){1,}/', '', $templateid);
309
310 // make sure given template actually is available
311 //
28294310 312 $found_templateset = false;
313 for ($i = 0; $i < count($aTemplateSet); ++$i) {
314 if ($aTemplateSet[$i]['ID'] == $templateid) {
315 $found_templateset = true;
316 break;
317 }
318 }
c4e5f61f 319
be155e14 320// FIXME: do we need/want to check here for actual (physical) presence of template sets?
28294310 321 // selected template not available, fall back to default template
322 //
323 if (!$found_templateset) {
42b5e8aa 324 $sTemplateID = Template::get_default_template_set();
28294310 325 } else {
326 $sTemplateID = $templateid;
c4e5f61f 327 }
328
2b26084f 329 session_write_close();
c4e5f61f 330 break;
331
202bcbcc 332 case 'redirect':
4d2f7565 333 /**
826ddd72 334 * directory hashing functions are needed for all setups in case
4d2f7565 335 * plugins use own pref files.
336 */
337 require(SM_PATH . 'functions/prefs.php');
2e616fa4 338 require(SM_PATH . 'functions/auth.php');
4d2f7565 339 /* hook loads custom prefs backend plugins */
d849b570 340 $prefs_backend = do_hook('prefs_backend', $null);
202bcbcc 341 if (isset($prefs_backend) && !empty($prefs_backend) && file_exists(SM_PATH . $prefs_backend)) {
342 require(SM_PATH . $prefs_backend);
343 } elseif (isset($prefs_dsn) && !empty($prefs_dsn)) {
344 require(SM_PATH . 'functions/db_prefs.php');
345 } else {
202bcbcc 346 require(SM_PATH . 'functions/file_prefs.php');
347 }
348 //nobreak;
349 case 'login':
350 require(SM_PATH . 'functions/display_messages.php' );
351 require(SM_PATH . 'functions/page_header.php');
352 require(SM_PATH . 'functions/html.php');
42b5e8aa 353
354 // reset template file cache
355 //
356 $sTemplateID = Template::get_default_template_set();
357 Template::cache_template_file_hierarchy(TRUE);
358
01fd1d1a 359 /**
360 * Make sure icon variables are setup for the login page.
361 */
362 $icon_theme = $icon_themes[$icon_theme_def]['PATH'];
363 /*
364 * NOTE: The $icon_theme_path var should contain the path to the icon
365 * theme to use. If the admin has disabled icons, or the user has
366 * set the icon theme to "None," no icons will be used.
367 */
368 $icon_theme_path = (!$use_icons || $icon_theme=='none') ? NULL : ($icon_theme == 'template' ? SM_PATH . Template::calculate_template_images_directory($sTemplateID) : $icon_theme);
369
1d537493 370 /**
371 * cleanup old cookies with a cookie path the same as the standard php.ini
372 * cookie path. All previous SquirrelMail version used the standard php.ini
373 * cookie path for storing the session name. That behaviour changed.
374 */
375 if ($sCookiePath !== SM_BASE_URI) {
376 /**
377 * do not delete the standard sessions with session.name is i.e. PHPSESSID
378 * because they probably belong to other php apps
379 */
380 if (ini_get('session.name') !== $sSessionAutostartName) {
30a428c6 381 // This does not work. Sometimes the cookie with SQSESSID=deleted and path /
382 // is picked up in webmail.php => login will fail
383 //sqsetcookie(ini_get('session.name'),'',0,$sCookiePath);
1d537493 384 }
385 }
202bcbcc 386 break;
387 default:
388 require(SM_PATH . 'functions/display_messages.php' );
389 require(SM_PATH . 'functions/page_header.php');
390 require(SM_PATH . 'functions/html.php');
391 require(SM_PATH . 'functions/strings.php');
392
393
394 /**
395 * Check if we are logged in
396 */
397 require(SM_PATH . 'functions/auth.php');
398
399 if ( !sqsession_is_registered('user_is_logged_in') ) {
400 // First we store some information in the new session to prevent
401 // information-loss.
402 //
403 $session_expired_post = $_POST;
404 $session_expired_location = $PHP_SELF;
405 if (!sqsession_is_registered('session_expired_post')) {
406 sqsession_register($session_expired_post,'session_expired_post');
407 }
408 if (!sqsession_is_registered('session_expired_location')) {
409 sqsession_register($session_expired_location,'session_expired_location');
410 }
411 // signout page will deal with users who aren't logged
412 // in on its own; don't show error here
413 //
9e06a3ea 414 if ( PAGE_NAME == 'signout' ) {
a140422a 415 return;
202bcbcc 416 }
417
8efadc6b 418 /**
419 * Initialize the template object (logout_error uses it)
420 */
8efadc6b 421 /*
086ad092 422 * $sTemplateID is not initialized when a user is not logged in, so we
423 * will use the config file defaults here. If the neccesary variables
28294310 424 * are net set, force a default value.
8efadc6b 425 */
42b5e8aa 426 $sTemplateID = Template::get_default_template_set();
28294310 427 $oTemplate = Template::construct_template($sTemplateID);
8efadc6b 428
202bcbcc 429 set_up_language($squirrelmail_language, true);
430 logout_error( _("You must be logged in to access this page.") );
431 exit;
432 }
433
93d67e0d 434//FIXME: remove next line if the placement of the copy of this line above does not prove to be problematic
202bcbcc 435 sqgetGlobalVar('username',$username,SQ_SESSION);
79524620 436 sqgetGlobalVar('authz',$authz,SQ_SESSION);
202bcbcc 437
438 /**
439 * Setting the prefs backend
440 */
441 sqgetGlobalVar('prefs_cache', $prefs_cache, SQ_SESSION );
442 sqgetGlobalVar('prefs_are_cached', $prefs_are_cached, SQ_SESSION );
443
444 if ( !sqsession_is_registered('prefs_are_cached') ||
445 !isset( $prefs_cache) ||
446 !is_array( $prefs_cache)) {
447 $prefs_are_cached = false;
448 $prefs_cache = false; //array();
449 }
450
c4e5f61f 451 /* see 'redirect' case */
4d2f7565 452 require(SM_PATH . 'functions/prefs.php');
453
d849b570 454 $prefs_backend = do_hook('prefs_backend', $null);
202bcbcc 455 if (isset($prefs_backend) && !empty($prefs_backend) && file_exists(SM_PATH . $prefs_backend)) {
456 require(SM_PATH . $prefs_backend);
457 } elseif (isset($prefs_dsn) && !empty($prefs_dsn)) {
458 require(SM_PATH . 'functions/db_prefs.php');
459 } else {
202bcbcc 460 require(SM_PATH . 'functions/file_prefs.php');
461 }
462
463 /**
464 * initializing user settings
465 */
466 require(SM_PATH . 'include/load_prefs.php');
467
202bcbcc 468// i do not understand the frames language cookie story
469 /**
470 * We'll need this to later have a noframes version
471 *
472 * Check if the user has a language preference, but no cookie.
473 * Send him a cookie with his language preference, if there is
474 * such discrepancy.
475 */
476 $my_language = getPref($data_dir, $username, 'language');
477 if ($my_language != $squirrelmail_language) {
478 sqsetcookie('squirrelmail_language', $my_language, time()+2592000, $base_uri);
479 }
480// /dont understand
481
482 /**
483 * Set up the language.
484 */
485 $err=set_up_language(getPref($data_dir, $username, 'language'));
202bcbcc 486
487 // Japanese translation used without mbstring support
488 if ($err==2) {
489 $sError =
490 "<p>You need to have PHP installed with the multibyte string function \n".
491 "enabled (using configure option --enable-mbstring).</p>\n".
492 "<p>System assumed that you accidently switched to Japanese translation \n".
493 "and reverted your language preference to English.</p>\n".
494 "<p>Please refresh this page in order to use webmail.</p>\n";
495 error_box($sError);
496 }
497
498 $timeZone = getPref($data_dir, $username, 'timezone');
499
500 /* Check to see if we are allowed to set the TZ environment variable.
501 * We are able to do this if ...
502 * safe_mode is disabled OR
503 * safe_mode_allowed_env_vars is empty (you are allowed to set any) OR
504 * safe_mode_allowed_env_vars contains TZ
505 */
506 $tzChangeAllowed = (!ini_get('safe_mode')) ||
507 !strcmp(ini_get('safe_mode_allowed_env_vars'),'') ||
508 preg_match('/^([\w_]+,)*TZ/', ini_get('safe_mode_allowed_env_vars'));
509
510 if ( $timeZone != SMPREF_NONE && ($timeZone != "")
511 && $tzChangeAllowed ) {
512
513 // get time zone key, if strict or custom strict timezones are used
514 if (isset($time_zone_type) &&
515 ($time_zone_type == 1 || $time_zone_type == 3)) {
516 /* load time zone functions */
517 require(SM_PATH . 'include/timezones.php');
518 $realTimeZone = sq_get_tz_key($timeZone);
519 } else {
520 $realTimeZone = $timeZone;
521 }
522
523 // set time zone
524 if ($realTimeZone) {
525 putenv("TZ=".$realTimeZone);
526 }
527 }
867fed37 528
529 /**
530 * php 5.1.0 added time zone functions. Set time zone with them in order
531 * to prevent E_STRICT notices and allow time zone modifications in safe_mode.
532 */
533 if (function_exists('date_default_timezone_set')) {
534 if ($timeZone != SMPREF_NONE && $timeZone != "") {
535 date_default_timezone_set($timeZone);
536 } else {
537 // interface runs on server's time zone. Remove php E_STRICT complains
538 $default_timezone = @date_default_timezone_get();
086ad092 539 date_default_timezone_set($default_timezone);
867fed37 540 }
541 }
202bcbcc 542 break;
543}
544
202bcbcc 545/*
086ad092 546 * $sTemplateID is not initialized when a user is not logged in, so we
547 * will use the config file defaults here. If the neccesary variables
28294310 548 * are not set, force a default value.
086ad092 549 *
550 * If the user is logged in, $sTemplateID will be set in load_prefs.php,
28294310 551 * so we shouldn't change it here.
202bcbcc 552 */
28294310 553if (!isset($sTemplateID)) {
42b5e8aa 554 $sTemplateID = Template::get_default_template_set();
28294310 555 $icon_theme_path = !$use_icons ? NULL : Template::calculate_template_images_directory($sTemplateID);
3aa46abc 556}
be155e14 557
558// template object may have already been constructed in load_prefs.php
559//
560if (empty($oTemplate)) {
561 $oTemplate = Template::construct_template($sTemplateID);
562}
202bcbcc 563
7aae649d 564// We want some variables to always be available to the template
457e8593 565$oTemplate->assign('javascript_on', checkForJavascript());
fe8103c2 566$oTemplate->assign('base_uri', sqm_baseuri());
457e8593 567$always_include = array('sTemplateID', 'icon_theme_path');
7aae649d 568foreach ($always_include as $var) {
569 $oTemplate->assign($var, (isset($$var) ? $$var : NULL));
570}
571
202bcbcc 572/**
573 * Initialize our custom error handler object
574 */
202bcbcc 575$oErrorHandler = new ErrorHandler($oTemplate,'error_message.tpl');
576
577/**
578 * Activate custom error handling
579 */
580if (version_compare(PHP_VERSION, "4.3.0", ">=")) {
581 $oldErrorHandler = set_error_handler(array($oErrorHandler, 'SquirrelMailErrorhandler'));
582} else {
583 $oldErrorHandler = set_error_handler('SquirrelMailErrorhandler');
584}
585
586/**
587 * Javascript support detection function
588 * @param boolean $reset recheck javascript support if set to true.
867fed37 589 * @return integer SMPREF_JS_ON or SMPREF_JS_OFF ({@see include/constants.php})
202bcbcc 590 * @since 1.5.1
591 */
202bcbcc 592function checkForJavascript($reset = FALSE) {
593 global $data_dir, $username, $javascript_on, $javascript_setting;
594
595 if ( !$reset && sqGetGlobalVar('javascript_on', $javascript_on, SQ_SESSION) )
596 return $javascript_on;
597
457e8593 598 if ( ( $reset || !isset($javascript_setting) )
086ad092 599 // getPref() not defined (nor is it meaningful) when user not
457e8593 600 // logged in, but that begs the question if $javascript_on is
086ad092 601 // not in the session in that case, where do we get it from?
457e8593 602 && ( sqGetGlobalVar('user_is_logged_in', $user_is_logged_in, SQ_SESSION)
603 && $user_is_logged_in) )
202bcbcc 604 $javascript_setting = getPref($data_dir, $username, 'javascript_setting', SMPREF_JS_AUTODETECT);
605
606 if ( !sqGetGlobalVar('new_js_autodetect_results', $js_autodetect_results) &&
607 !sqGetGlobalVar('js_autodetect_results', $js_autodetect_results) )
608 $js_autodetect_results = SMPREF_JS_OFF;
609
610 if ( $javascript_setting == SMPREF_JS_AUTODETECT )
611 $javascript_on = $js_autodetect_results;
612 else
613 $javascript_on = $javascript_setting;
614
615 sqsession_register($javascript_on, 'javascript_on');
616 return $javascript_on;
617}
618
619function sqm_baseuri() {
620 global $base_uri;
621 return $base_uri;
8e1e2794 622}