diff -r 53cff4b4a802 -r bde1974c263b web/wp-content/plugins/wp-explorer/wp-explorer-options.php
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/plugins/wp-explorer/wp-explorer-options.php Wed Feb 03 15:37:20 2010 +0000
@@ -0,0 +1,77 @@
+ $value)
+ {
+ $wp_explorer_options[$key] = $_POST['revert'][$key] ? $wp_explorer_default[$key] : stripslashes_deep(trim($value));
+ }
+ update_option('wp_explorer_options', $wp_explorer_options);
+ ?>
'tmp_main', 'title' => __('Template: Main', 'wp-explorer'), 'input' => 'textarea' );
+$wp_explorer_options_map[] = array('name' => 'tmp_dirtbl', 'title' => __('Template: Folders Table', 'wp-explorer'), 'input' => 'textarea' );
+$wp_explorer_options_map[] = array('name' => 'tmp_dirbit', 'title' => __('Template: Folders Bit', 'wp-explorer'), 'input' => 'textarea' );
+$wp_explorer_options_map[] = array('name' => 'tmp_filetbl', 'title' => __('Template: Files Table', 'wp-explorer'), 'input' => 'textarea' );
+$wp_explorer_options_map[] = array('name' => 'tmp_filebit', 'title' => __('Template: Files Bit', 'wp-explorer'), 'input' => 'textarea' );
+$wp_explorer_options_map[] = array('name' => 'tmp_error', 'title' => __('Template: Error', 'wp-explorer'), 'input' => 'textarea' );
+$wp_explorer_options_map[] = array('name' => 'exclude_files', 'title' => __('Exclude Files From Listing', 'wp-explorer'), 'input' => 'text' );
+$wp_explorer_options_map[] = array('name' => 'exclude_folders', 'title' => __('Exclude Folders From Listing', 'wp-explorer'), 'input' => 'text' );
+$wp_explorer_options_map[] = array('name' => 'exclude_extensions', 'title' => __('Exclude Extensions From Listing', 'wp-explorer'), 'input' => 'text' );
+$wp_explorer_options_map[] = array('name' => 'enable_antileech', 'title' => __('Enable htaccess anti-leech protection', 'wp-explorer'), 'input' => 'radioyesno' );
+$wp_explorer_options_map[] = array('name' => 'enable_fancylinks', 'title' => __('Enable Pretty Links', 'wp-explorer'), 'input' => 'radioyesno' );
+?>
+
+
\ No newline at end of file