Changeset 25916
- Timestamp:
- Dec 10, 2013, 12:18:36 PM (11 years ago)
- Location:
- extensions/AdminTools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/AdminTools/include/events.inc.php
r25915 r25916 160 160 161 161 $template->assign(array( 162 'ADMINTOOLS_PATH' => ADMINTOOLS_PATH,162 'ADMINTOOLS_PATH' => './plugins/' . ADMINTOOLS_ID .'/', 163 163 'ato' => $tpl_vars, 164 164 )); … … 191 191 global $page, $conf, $MultiView, $user, $picture; 192 192 193 if (!isset($_GET['delete']) and !isset($_POST['action']) and $_POST['action'] != 'quick_edit')193 if (!isset($_GET['delete']) and !isset($_POST['action']) and @$_POST['action'] != 'quick_edit') 194 194 { 195 195 return; -
extensions/AdminTools/main.inc.php
r25915 r25916 16 16 // +-----------------------------------------------------------------------+ 17 17 define('ADMINTOOLS_ID', basename(dirname(__FILE__))); 18 define('ADMINTOOLS_PATH' , './plugins/'. ADMINTOOLS_ID . '/');18 define('ADMINTOOLS_PATH' , PHPWG_PLUGINS_PATH . ADMINTOOLS_ID . '/'); 19 19 // define('ADMINTOOLS_ADMIN', get_root_url() . 'admin.php?page=plugin-' . ADMINTOOLS_ID); 20 20 define('ADMINTOOLS_VERSION', 'auto');
Note: See TracChangeset
for help on using the changeset viewer.