Changeset 3344038
- Timestamp:
- 08/13/2025 10:52:40 AM (8 months ago)
- Location:
- buildecom
- Files:
-
- 6 edited
- 3 copied
-
tags/1.0.6 (copied) (copied from buildecom/trunk)
-
tags/1.0.6/buildecom.php (modified) (1 diff)
-
tags/1.0.6/inc/api/class-api-auth.php (copied) (copied from buildecom/trunk/inc/api/class-api-auth.php) (4 diffs)
-
tags/1.0.6/inc/banners/add.php (modified) (1 diff)
-
tags/1.0.6/readme.txt (copied) (copied from buildecom/trunk/readme.txt) (1 diff)
-
trunk/buildecom.php (modified) (1 diff)
-
trunk/inc/api/class-api-auth.php (modified) (4 diffs)
-
trunk/inc/banners/add.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
buildecom/tags/1.0.6/buildecom.php
r3319894 r3344038 226 226 { 227 227 $page = isset($_GET['page']) ? sanitize_key(wp_unslash($_GET['page'])) : false; 228 $action = isset($_GET['action']) ? sanitize_key(wp_unslash($_GET['action'])) : false;228 $action = isset($_GET['action']) ? sanitize_key(wp_unslash($_GET['action'])) : 'privacy-policy'; 229 229 230 230 if ('buildecom-setting' !== $page || !$page) { -
buildecom/tags/1.0.6/inc/api/class-api-auth.php
r3344019 r3344038 129 129 'remark' => 'user_created', 130 130 'message' => [ 131 'success' => 'registration successful.'131 'success' => ['Registration successful.'] 132 132 ], 133 133 'data' => $data, … … 216 216 'status' => 'error', 217 217 'remark' => 'buildecom_auth_bad_config', 218 'message' => ['error' => 'Buildecom Auth Secret Key is not configured properly.'],218 'message' => ['error' =>[ 'Buildecom Auth Secret Key is not configured properly.']], 219 219 ), 220 220 500 … … 249 249 'status' => 'success', 250 250 'remark' => 'login_success', 251 'message' => ['success' => ['Login ]successful.']],251 'message' => ['success' => ['Login successful.']], 252 252 'data' => $data, 253 253 ); … … 439 439 'status' => 'success', 440 440 'remark' => 'user_information', 441 'message' => ['success' => 'User Information'],441 'message' => ['success' => ['User Information']], 442 442 'data' => [ 443 443 'user' => [ -
buildecom/tags/1.0.6/inc/banners/add.php
r3316130 r3344038 36 36 'category_id' => $category_id, 37 37 'banner_category_id' => $banner_category_id, 38 'product_id' => $product_id ,38 'product_id' => $product_id ?? 0, 39 39 'image' => $image, 40 40 'status' => 1, -
buildecom/tags/1.0.6/readme.txt
r3344019 r3344038 4 4 Requires at least: 4.7 5 5 Tested up to: 6.8 6 Stable tag: 1.0. 56 Stable tag: 1.0.6 7 7 License: GPL-2.0+ 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
buildecom/trunk/buildecom.php
r3319894 r3344038 226 226 { 227 227 $page = isset($_GET['page']) ? sanitize_key(wp_unslash($_GET['page'])) : false; 228 $action = isset($_GET['action']) ? sanitize_key(wp_unslash($_GET['action'])) : false;228 $action = isset($_GET['action']) ? sanitize_key(wp_unslash($_GET['action'])) : 'privacy-policy'; 229 229 230 230 if ('buildecom-setting' !== $page || !$page) { -
buildecom/trunk/inc/api/class-api-auth.php
r3344019 r3344038 129 129 'remark' => 'user_created', 130 130 'message' => [ 131 'success' => 'registration successful.'131 'success' => ['Registration successful.'] 132 132 ], 133 133 'data' => $data, … … 216 216 'status' => 'error', 217 217 'remark' => 'buildecom_auth_bad_config', 218 'message' => ['error' => 'Buildecom Auth Secret Key is not configured properly.'],218 'message' => ['error' =>[ 'Buildecom Auth Secret Key is not configured properly.']], 219 219 ), 220 220 500 … … 249 249 'status' => 'success', 250 250 'remark' => 'login_success', 251 'message' => ['success' => ['Login ]successful.']],251 'message' => ['success' => ['Login successful.']], 252 252 'data' => $data, 253 253 ); … … 439 439 'status' => 'success', 440 440 'remark' => 'user_information', 441 'message' => ['success' => 'User Information'],441 'message' => ['success' => ['User Information']], 442 442 'data' => [ 443 443 'user' => [ -
buildecom/trunk/inc/banners/add.php
r3316130 r3344038 36 36 'category_id' => $category_id, 37 37 'banner_category_id' => $banner_category_id, 38 'product_id' => $product_id ,38 'product_id' => $product_id ?? 0, 39 39 'image' => $image, 40 40 'status' => 1, -
buildecom/trunk/readme.txt
r3344019 r3344038 4 4 Requires at least: 4.7 5 5 Tested up to: 6.8 6 Stable tag: 1.0. 56 Stable tag: 1.0.6 7 7 License: GPL-2.0+ 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.