diff options
author | flop25 <flop25@piwigo.org> | 2014-04-14 20:58:02 +0000 |
---|---|---|
committer | flop25 <flop25@piwigo.org> | 2014-04-14 20:58:02 +0000 |
commit | 8f9d4416e5b1dcded982cc3fc7171074004ac22e (patch) | |
tree | 0e3e68d1588ef7c5db15e422b5b453800cf24c89 /plugins/TakeATour/main.inc.php | |
parent | 511138399b9a14909a0857db135ad5f747273c82 (diff) |
allow TakeATour to exist in the public part
typo fix in config.inc.php
git-svn-id: http://piwigo.org/svn/trunk@28180 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | plugins/TakeATour/main.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
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');
|