Plugin Directory

Changeset 2333323


Ignore:
Timestamp:
07/01/2020 07:13:15 AM (6 years ago)
Author:
rnlab
Message:

fix: Authentication typo

Location:
mobile-builder/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • mobile-builder/trunk/mobile-builder.php

    r2332656 r2333323  
    1111 * Plugin URI:        https://doc-oreo.rnlab.io
    1212 * Description:       The most advanced drag & drop app builder. Create multi templates and app controls.
    13  * Version:           1.0.4
     13 * Version:           1.0.5
    1414 * Author:            Rnlab.io
    1515 * Author URI:        https://rnlab.io
  • mobile-builder/trunk/public/class-mobile-builder-public.php

    r2311294 r2333323  
    16481648            $headers = $this->headers();
    16491649
     1650            if ( isset( $headers['authorization'] ) ) {
     1651                $headers['Authorization'] = $headers['authorization'];
     1652            }
     1653
    16501654            if ( ! isset( $headers['Authorization'] ) ) {
    16511655                return new WP_Error(
     
    16581662            }
    16591663
    1660 
    16611664            $match = preg_match( '/Bearer\s(\S+)/', $headers['Authorization'], $matches );
    16621665
Note: See TracChangeset for help on using the changeset viewer.