Changeset 2275769
- Timestamp:
- 04/04/2020 10:48:57 AM (6 years ago)
- Location:
- wp-inbox/trunk
- Files:
-
- 3 deleted
- 1 edited
-
css/admin-style.css (deleted)
-
css/admin-style.min.css (deleted)
-
lib/plugin (deleted)
-
wp-inbox.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-inbox/trunk/wp-inbox.php
r2269760 r2275769 29 29 30 30 add_action('plugins_loaded', 'inboxWebmail_pluginLoaded'); 31 add_action('admin_enqueue_scripts', 'inboxWebmail_load_admin_style');32 31 33 add_action('wp_head', 'inboxWebmail_email_parser_cron'); 32 $inboxWebmail_page = isset($_GET['page']) ? sanitize_text_field($_GET['page']) : ''; 33 if($inboxWebmail_page=='inboxWebmail'){ 34 add_action('admin_enqueue_scripts', 'inboxWebmail_load_admin_style'); 35 } 34 36 35 37 /** … … 73 75 $dir = 'controller'; 74 76 break; 75 case 'Plugin':76 $dir = 'plugin';77 break;78 77 default: 79 78 return;
Note: See TracChangeset
for help on using the changeset viewer.