Plugin Directory

Changeset 3344038


Ignore:
Timestamp:
08/13/2025 10:52:40 AM (8 months ago)
Author:
buildecomteam
Message:

Release 1.0.6: bump versions and tag from trunk

Location:
buildecom
Files:
6 edited
3 copied

Legend:

Unmodified
Added
Removed
  • buildecom/tags/1.0.6/buildecom.php

    r3319894 r3344038  
    226226    {
    227227        $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';
    229229
    230230        if ('buildecom-setting' !== $page || !$page) {
  • buildecom/tags/1.0.6/inc/api/class-api-auth.php

    r3344019 r3344038  
    129129            'remark'  => 'user_created',
    130130            'message' => [
    131                 'success' => 'registration successful.'
     131                'success' => ['Registration successful.']
    132132            ],
    133133            'data'    => $data,
     
    216216                    'status'  => 'error',
    217217                    '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.']],
    219219                ),
    220220                500
     
    249249            'status'  => 'success',
    250250            'remark'  => 'login_success',
    251             'message' => ['success' => ['Login] successful.']],
     251            'message' => ['success' => ['Login successful.']],
    252252            'data'    => $data,
    253253        );
     
    439439                'status'  => 'success',
    440440                'remark'  => 'user_information',
    441                 'message' => ['success' => 'User Information'],
     441                'message' => ['success' => ['User Information']],
    442442                'data'    => [
    443443                    'user' => [
  • buildecom/tags/1.0.6/inc/banners/add.php

    r3316130 r3344038  
    3636                'category_id'        => $category_id,
    3737                'banner_category_id' => $banner_category_id,
    38                 'product_id'         => $product_id,
     38                'product_id'         => $product_id ?? 0,
    3939                'image'              => $image,
    4040                'status'             => 1,
  • buildecom/tags/1.0.6/readme.txt

    r3344019 r3344038  
    44Requires at least: 4.7
    55Tested up to: 6.8
    6 Stable tag: 1.0.5
     6Stable tag: 1.0.6
    77License: GPL-2.0+
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • buildecom/trunk/buildecom.php

    r3319894 r3344038  
    226226    {
    227227        $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';
    229229
    230230        if ('buildecom-setting' !== $page || !$page) {
  • buildecom/trunk/inc/api/class-api-auth.php

    r3344019 r3344038  
    129129            'remark'  => 'user_created',
    130130            'message' => [
    131                 'success' => 'registration successful.'
     131                'success' => ['Registration successful.']
    132132            ],
    133133            'data'    => $data,
     
    216216                    'status'  => 'error',
    217217                    '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.']],
    219219                ),
    220220                500
     
    249249            'status'  => 'success',
    250250            'remark'  => 'login_success',
    251             'message' => ['success' => ['Login] successful.']],
     251            'message' => ['success' => ['Login successful.']],
    252252            'data'    => $data,
    253253        );
     
    439439                'status'  => 'success',
    440440                'remark'  => 'user_information',
    441                 'message' => ['success' => 'User Information'],
     441                'message' => ['success' => ['User Information']],
    442442                'data'    => [
    443443                    'user' => [
  • buildecom/trunk/inc/banners/add.php

    r3316130 r3344038  
    3636                'category_id'        => $category_id,
    3737                'banner_category_id' => $banner_category_id,
    38                 'product_id'         => $product_id,
     38                'product_id'         => $product_id ?? 0,
    3939                'image'              => $image,
    4040                'status'             => 1,
  • buildecom/trunk/readme.txt

    r3344019 r3344038  
    44Requires at least: 4.7
    55Tested up to: 6.8
    6 Stable tag: 1.0.5
     6Stable tag: 1.0.6
    77License: GPL-2.0+
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.