Changeset 2897783
- Timestamp:
- 04/12/2023 12:11:31 PM (3 years ago)
- Location:
- dash-todo/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (3 diffs)
-
dash-todo.php (modified) (2 diffs)
-
includes/admin-page.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dash-todo/trunk/README.txt
r2897747 r2897783 5 5 Requires at least: 5.9 6 6 Tested up to: 6.2 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 45 45 * Add todo item by pressing ENTER 46 46 * Render raw title 47 48 47 = 1.0.3 = 49 48 * Performance 50 49 * Bug fix 50 = 1.0.4 = 51 * Fix PHP warning 51 52 52 53 == Upgrade Notice == … … 58 59 =1.0.2 = 59 60 Feature updates 60 =1.0. 2=61 =1.0.3 = 61 62 Bug fix 63 =1.0.4 = 64 Bug fix -
dash-todo/trunk/dash-todo.php
r2897747 r2897783 9 9 * Author: Sharif Mohammad Eunus 10 10 * Author URI: https://sharifff.com 11 * Version: 1.0. 311 * Version: 1.0.4 12 12 * Requires at least: 5.9 13 13 * Tested up to: 6.2 … … 28 28 define('DASH_TODO_PLUGIN_FILE', __FILE__); 29 29 define('DASH_TODO_PLUGIN_DIR', __DIR__); 30 define('DASH_TODO_PLUGIN_VERSION', '1.0. 3');30 define('DASH_TODO_PLUGIN_VERSION', '1.0.4'); 31 31 32 32 require 'includes/enqueue-scripts-from-asset-file.php'; -
dash-todo/trunk/includes/admin-page.php
r2897747 r2897783 117 117 add_action('admin_enqueue_scripts', function () { 118 118 119 $hidden_widgets = get_user_option('metaboxhidden_dashboard') ?? [];120 if (i n_array('dash_todo_admin_widget', $hidden_widgets)) {119 $hidden_widgets = get_user_option('metaboxhidden_dashboard'); 120 if (is_array($hidden_widgets) && in_array('dash_todo_admin_widget', $hidden_widgets)) { 121 121 return; 122 122 }
Note: See TracChangeset
for help on using the changeset viewer.