Plugin Directory

Changeset 2105821


Ignore:
Timestamp:
06/13/2019 07:07:52 PM (7 years ago)
Author:
joudisoft
Message:

Plugin now is compatible with WordPress 5.2

Location:
joudisoft-general-wp-mobile-application
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • joudisoft-general-wp-mobile-application/tags/1.1/readme.txt

    r1968251 r2105821  
    44Tags: Application, joudiSoft, Application Box, AppBox, Android, Android Application, APK, Build Application, Mobile Application, Build Mobile Application, WordPress Application
    55Requires at least: 4.6
    6 Tested up to: 5.0
     6Tested up to: 5.2
    77Stable tag: 4.3
    88Requires PHP: 5.6
  • joudisoft-general-wp-mobile-application/tags/1.1/render.php

    r1968251 r2105821  
    422422        $v = new jsoft_awp_validator($_REQUEST);
    423423        $v->rule('required', "license_key");
    424         $v->rule('numeric', "license_key");
    425         $v->rule('lengthBetween', "license_key", 10, 20);
     424        $v->rule('regex', "license_key", "/^[0-9A-Za-z]{1,20}$/");
    426425
    427426        $validate = jsoft_awp_do_validate_v($v);
  • joudisoft-general-wp-mobile-application/trunk/readme.txt

    r1968251 r2105821  
    44Tags: Application, joudiSoft, Application Box, AppBox, Android, Android Application, APK, Build Application, Mobile Application, Build Mobile Application, WordPress Application
    55Requires at least: 4.6
    6 Tested up to: 5.0
     6Tested up to: 5.2
    77Stable tag: 4.3
    88Requires PHP: 5.6
  • joudisoft-general-wp-mobile-application/trunk/render.php

    r1952355 r2105821  
    422422        $v = new jsoft_awp_validator($_REQUEST);
    423423        $v->rule('required', "license_key");
    424         $v->rule('numeric', "license_key");
    425         $v->rule('lengthBetween', "license_key", 10, 20);
     424        $v->rule('regex', "license_key", "/^[0-9A-Za-z]{1,20}$/");
    426425
    427426        $validate = jsoft_awp_do_validate_v($v);
Note: See TracChangeset for help on using the changeset viewer.