diff --git a/include/config_default.inc.php b/include/config_default.inc.php index cd7c0156a..88da22213 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -439,7 +439,7 @@ $conf['debug_mail'] = false; $conf['die_on_sql_error'] = true; // if true, some language strings are replaced during template compilation -// (insted of template output). this results in better performance. however +// (instead of template output). this results in better performance. however // any change in the language file will not be propagated until you purge // the compiled templates from the admin / maintenance menu $conf['compiled_template_cache_language'] = false; diff --git a/plugins/TakeATour/main.inc.php b/plugins/TakeATour/main.inc.php index 46466c4c3..2f179257d 100644 --- a/plugins/TakeATour/main.inc.php +++ b/plugins/TakeATour/main.inc.php @@ -26,11 +26,11 @@ elseif ( isset($_GET['tour_ended']) and in_array($_GET['tour_ended'], $avalaible pwg_unset_session_var('tour_to_launch'); } -if (pwg_get_session_var('tour_to_launch') and defined('IN_ADMIN') and IN_ADMIN and isset($_GET['page']) and $_GET['page']=="plugin-TakeATour" ) +if (pwg_get_session_var('tour_to_launch') and isset($_GET['page']) and $_GET['page']=="plugin-TakeATour" ) { pwg_unset_session_var('tour_to_launch'); } -elseif ( pwg_get_session_var('tour_to_launch') and defined('IN_ADMIN') and IN_ADMIN) +elseif ( pwg_get_session_var('tour_to_launch') ) { add_event_handler('init', 'TAT_add_js_css'); include('tours/'.pwg_get_session_var('tour_to_launch').'/config.inc.php');