aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2006-12-14 00:58:57 +0000
committerrvelices <rv-github@modusoptimus.com>2006-12-14 00:58:57 +0000
commitf7960e7e72ca913e1e67844dec6ff0d40de46d1b (patch)
tree678ca1a56753234b43b6ba65eb0b61fb7535787f /plugins
parent51e56e9c1f4952a7d8cb7533b62c2829c15df01e (diff)
- plugins admin menu appear now in the admin page menubar
- plugins are loaded immediately after loading the config (allow them to hack more of pwg like user init, template init etc...) - trigger event format_exif_data (for picture display only) git-svn-id: http://piwigo.org/svn/trunk@1655 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'plugins')
-rw-r--r--plugins/event_tracer/tracer_admin.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/event_tracer/tracer_admin.php b/plugins/event_tracer/tracer_admin.php
index 9231638b1..7371d2531 100644
--- a/plugins/event_tracer/tracer_admin.php
+++ b/plugins/event_tracer/tracer_admin.php
@@ -9,7 +9,11 @@ if ( isset($_POST['eventTracer_filters']) )
$v = $_POST['eventTracer_filters'];
$v = str_replace( "\r\n", "\n", $v );
$v = str_replace( "\n\n", "\n", $v );
- $this->my_config['filters'] = explode("\n", $v);
+ $v = stripslashes($v);
+ if (!empty($v))
+ $this->my_config['filters'] = explode("\n", $v);
+ else
+ $this->my_config['filters'] = array();
$this->my_config['show_args'] = isset($_POST['eventTracer_show_args']);
$this->save_config();
global $page;