Changeset 2931951
- Timestamp:
- 06/28/2023 06:01:29 PM (3 years ago)
- Location:
- pubydoc-data-tables-and-charts/trunk
- Files:
-
- 4 edited
-
classes/frame.php (modified) (1 diff)
-
config.php (modified) (1 diff)
-
publish-your-table.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pubydoc-data-tables-and-charts/trunk/classes/frame.php
r2900249 r2931951 466 466 public function isAdminPlugOptsPage() { 467 467 $page = ReqPyt::getVar('page'); 468 if (is_admin() && strpos($page, self::_()->getModule('adminmenu')->getMainSlug()) !== false) {468 if (is_admin() && !empty($page) && strpos($page, self::_()->getModule('adminmenu')->getMainSlug()) !== false) { 469 469 return true; 470 470 } -
pubydoc-data-tables-and-charts/trunk/config.php
r2900249 r2931951 43 43 define('PYT_DEFAULT', 'default'); 44 44 45 define('PYT_VERSION', '2.0. 1');45 define('PYT_VERSION', '2.0.2'); 46 46 47 47 define('PYT_CLASS_PREFIX', 'pytc'); -
pubydoc-data-tables-and-charts/trunk/publish-your-table.php
r2900249 r2931951 4 4 * Plugin URI: https://pubydoc.com/ 5 5 * Description: Create and manage beautiful data tables and charts with custom design. 6 * Version: 2.0. 16 * Version: 2.0.2 7 7 * Author: PubyDoc 8 8 * Text Domain: publish-your-table -
pubydoc-data-tables-and-charts/trunk/readme.txt
r2900249 r2931951 4 4 Requires at least: 3.4.0 5 5 Tested up to: 6.2 6 Stable tag: 2.0. 16 Stable tag: 2.0.2 7 7 8 8 Create responsive data tables & charts with Table Builder, Excel spreadsheet or CSV. Searching, pagination, custom data table design, media support … … 213 213 214 214 == Changelog == 215 216 = 2.0.2 = 217 * Fixed deprecated functions 218 * Small code fixes 215 219 216 220 = 2.0.1 =
Note: See TracChangeset
for help on using the changeset viewer.