Changeset 3133137
- Timestamp:
- 08/09/2024 10:08:49 AM (20 months ago)
- Location:
- pageapp
- Files:
-
- 18 added
- 3 edited
-
tags/1.4.1 (added)
-
tags/1.4.1/css (added)
-
tags/1.4.1/css/admin.css (added)
-
tags/1.4.1/images (added)
-
tags/1.4.1/images/pageapp20.png (added)
-
tags/1.4.1/inc (added)
-
tags/1.4.1/inc/cachelib.php (added)
-
tags/1.4.1/inc/httplib.php (added)
-
tags/1.4.1/inc/jsonlib.php (added)
-
tags/1.4.1/inc/pluginlib.php (added)
-
tags/1.4.1/inc/restlib.php (added)
-
tags/1.4.1/inc/settingslib.php (added)
-
tags/1.4.1/inc/utilslib.php (added)
-
tags/1.4.1/js (added)
-
tags/1.4.1/js/admin.js (added)
-
tags/1.4.1/pageapp-json.php (added)
-
tags/1.4.1/pageapp.php (added)
-
tags/1.4.1/readme.txt (added)
-
trunk/inc/restlib.php (modified) (1 diff)
-
trunk/pageapp.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pageapp/trunk/inc/restlib.php
r3023859 r3133137 19 19 /* Common methods */ 20 20 public function get_param($key, $default = null) { 21 return isset($_REQUEST[$key]) ? ($this->is_wordpress ? stripslashes($_REQUEST[$key]) : $_REQUEST[$key]) : $default; 21 $value = $_REQUEST[$key]; 22 if (isset($value) && $value != null && $value != '') { 23 return ($this->is_wordpress ? stripslashes($_REQUEST[$key]) : $_REQUEST[$key]); 24 } else { 25 return $default; 26 } 22 27 } 23 28 public function assert_param($key, $description = null) { -
pageapp/trunk/pageapp.php
r3129768 r3133137 4 4 Plugin URI: https://wordpress.org/plugins/pageapp/ 5 5 Description: Extensions to Wordpress wp-json for the PageApp API and mobile framework 6 Version: 1.4. 06 Version: 1.4.1 7 7 Author: PageApp 8 8 Author URI: https://www.pageapp.com -
pageapp/trunk/readme.txt
r3129768 r3133137 4 4 Requires at least: 3.0 5 5 Tested up to: 6.5.4 6 Stable tag: 1.4. 06 Stable tag: 1.4.1 7 7 License: © 2024 Thireen32 Pty Ltd 8 8 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=K6VKWB3HZB2T2&item_name=Donation%20to%20jameslow%2ecom¤cy_code=USD&bn=PP%2dDonationsBF&charset=UTF%2d8 … … 28 28 29 29 == Changelog == 30 31 = 1.4.1 = 32 * Check for blanks in Restlib::get_param() 30 33 31 34 = 1.4.0 =
Note: See TracChangeset
for help on using the changeset viewer.