Changeset 3034389
- Timestamp:
- 02/12/2024 07:55:05 AM (22 months ago)
- Location:
- http-requests-manager
- Files:
-
- 2 edited
- 6 copied
-
tags/1.2.4 (copied) (copied from http-requests-manager/trunk)
-
tags/1.2.4/assets/css/admin.css (copied) (copied from http-requests-manager/trunk/assets/css/admin.css)
-
tags/1.2.4/assets/js/admin.js (copied) (copied from http-requests-manager/trunk/assets/js/admin.js)
-
tags/1.2.4/http-requests-manager.php (copied) (copied from http-requests-manager/trunk/http-requests-manager.php) (3 diffs)
-
tags/1.2.4/readme.txt (copied) (copied from http-requests-manager/trunk/readme.txt) (2 diffs)
-
tags/1.2.4/templates/page-settings.php (copied) (copied from http-requests-manager/trunk/templates/page-settings.php)
-
trunk/http-requests-manager.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
http-requests-manager/tags/1.2.4/http-requests-manager.php
r3003727 r3034389 5 5 Plugin URI: https://veppa.com/http-requests-manager/ 6 6 Description: Limit, disable, block, log all WP HTTP requests. Limit by request count, page load time or lower timeout for each request. Speed up login and admin pages. 7 Version: 1.2. 37 Version: 1.2.4 8 8 Author: veppa 9 9 Author URI: https://veppa.com/ … … 39 39 { 40 40 41 const VERSION = '1.2. 3';41 const VERSION = '1.2.4'; 42 42 const ID = 'http-requests-manager'; 43 43 … … 1772 1772 } 1773 1773 1774 self::$page_info['is_user_logged_in'] = is_user_logged_in();1774 1775 1775 self::$page_info['manager_mode'] = self::get_mode(); 1776 1776 self::$page_info['timer_before'] = self::$timer_before; 1777 1777 } 1778 1779 // is_user_logged_in() is pluggable function and will be loaded before init event. use it only if it is already loaded. 1780 if(!isset(self::$page_info['is_user_logged_in']) && function_exists('is_user_logged_in')) 1781 { 1782 self::$page_info['is_user_logged_in'] = is_user_logged_in(); 1783 } 1784 1778 1785 1779 1786 // updated data -
http-requests-manager/tags/1.2.4/readme.txt
r3003727 r3034389 5 5 Requires at least: 4.9 6 6 Tested up to: 6.4 7 Stable tag: 1.2. 37 Stable tag: 1.2.4 8 8 License: GPLv2 9 9 … … 164 164 == Changelog == 165 165 166 = 1.2.4 - 12 February 2024 = 167 168 * Fixed: prevent calling is_user_logged_in function when it is not declared. 169 166 170 = 1.2.3 - 30 November 2023 = 167 171 -
http-requests-manager/trunk/http-requests-manager.php
r3003727 r3034389 5 5 Plugin URI: https://veppa.com/http-requests-manager/ 6 6 Description: Limit, disable, block, log all WP HTTP requests. Limit by request count, page load time or lower timeout for each request. Speed up login and admin pages. 7 Version: 1.2. 37 Version: 1.2.4 8 8 Author: veppa 9 9 Author URI: https://veppa.com/ … … 39 39 { 40 40 41 const VERSION = '1.2. 3';41 const VERSION = '1.2.4'; 42 42 const ID = 'http-requests-manager'; 43 43 … … 1772 1772 } 1773 1773 1774 self::$page_info['is_user_logged_in'] = is_user_logged_in();1774 1775 1775 self::$page_info['manager_mode'] = self::get_mode(); 1776 1776 self::$page_info['timer_before'] = self::$timer_before; 1777 1777 } 1778 1779 // is_user_logged_in() is pluggable function and will be loaded before init event. use it only if it is already loaded. 1780 if(!isset(self::$page_info['is_user_logged_in']) && function_exists('is_user_logged_in')) 1781 { 1782 self::$page_info['is_user_logged_in'] = is_user_logged_in(); 1783 } 1784 1778 1785 1779 1786 // updated data -
http-requests-manager/trunk/readme.txt
r3003727 r3034389 5 5 Requires at least: 4.9 6 6 Tested up to: 6.4 7 Stable tag: 1.2. 37 Stable tag: 1.2.4 8 8 License: GPLv2 9 9 … … 164 164 == Changelog == 165 165 166 = 1.2.4 - 12 February 2024 = 167 168 * Fixed: prevent calling is_user_logged_in function when it is not declared. 169 166 170 = 1.2.3 - 30 November 2023 = 167 171
Note: See TracChangeset
for help on using the changeset viewer.