Plugin Directory

Changeset 2756647

Timestamp:
07/15/2022 12:52:46 AM (2 years ago)
Author:
ankurchauhan126
Message:

Marking compatible with WP6.0.1

Location:
nofollow-jquery-links/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • nofollow-jquery-links/trunk/freemius/includes/managers/class-fs-key-value-storage.php

    r2153269 r2756647  
    299299        }
    300300
     301
    301302        function offsetSet( $k, $v ) {
    302303            if ( is_null( $k ) ) {
     
    307308        }
    308309
     310
    309311        function offsetExists( $k ) {
    310312            return array_key_exists( $k, $this->_data );
    311313        }
    312314
     315
    313316        function offsetUnset( $k ) {
    314317            unset( $this->$k );
    315318        }
    316319
     320
    317321        function offsetGet( $k ) {
    318322            return $this->get( $k, null );
     
    326330         * @return mixed Can return any type.
    327331         */
     332
    328333        public function current() {
    329334            return current( $this->_data );
     
    337342         * @return void Any returned value is ignored.
    338343         */
     344
    339345        public function next() {
    340346            next( $this->_data );
     
    348354         * @return mixed scalar on success, or null on failure.
    349355         */
     356
    350357        public function key() {
    351358            return key( $this->_data );
     
    360367         *       Returns true on success or false on failure.
    361368         */
     369
    362370        public function valid() {
    363371            $key = key( $this->_data );
     
    373381         * @return void Any returned value is ignored.
    374382         */
     383
    375384        public function rewind() {
    376385            reset( $this->_data );
     
    387396         *       The return value is cast to an integer.
    388397         */
     398
    389399        public function count() {
    390400            return count( $this->_data );
  • nofollow-jquery-links/trunk/freemius/start.php

    r2697248 r2756647  
    1616     * @var string
    1717     */
    18     $this_sdk_version = '2.4.3';
     18    $this_sdk_version = '2.4.';
    1919
    2020    #region SDK Selection Logic --------------------------------------------------------------------
  • nofollow-jquery-links/trunk/nex-tm-jslink.php

    r2697248 r2756647  
    33 * Plugin Name: NoFollow jQuery Links
    44 * Plugin URI: https://nex.ist
    5  * Version: 1.4.1
     5 * Version: 1.4.
    66 * Author: Nexist, Ankur Chauhan
    77 * Author URI: https://nex.ist/
  • nofollow-jquery-links/trunk/readme.txt

    r2697248 r2756647  
    44Tags: seo, jquery, internal linking, crawl, link juice
    55Requires at least: 4.6
    6 Tested up to: 5.9.2
     6Tested up to:
    77Stable tag: trunk
    88Requires PHP: 5.2.4
     
    3838
    3939== Changelog ==
     40
     41
     42
     43
    4044
    4145= 1.4.1 - 2022/MAR/22 =
Note: See TracChangeset for help on using the changeset viewer.