Changed $plugin_list as an absolute path, as all configurable filenames/directory...
[matthijs/upstream/blosxom.git] / blosxom.cgi
index 78ad2ffcac7160a5cc41a5a1f62fc9c250ad19a3..44d438c7d5a1cf125e7ffaff040d5d2a07d03a9b 100755 (executable)
@@ -251,8 +251,6 @@ my @plugin_list = ();
 my %plugin_hash = ();
 
 # If $plugin_list is set, read plugins to use from that file
-$plugin_list = "$config_dir/$plugin_list"
-    if $plugin_list && $plugin_list !~ m!^\s*/!;
 if ( $plugin_list and -r $plugin_list and $fh->open("< $plugin_list") ) {
     @plugin_list = map { chomp $_; $_ } grep { /\S/ && !/^#/ } <$fh>;
     $fh->close;