Plugin Directory

Changeset 3130867


Ignore:
Timestamp:
08/05/2024 07:54:16 AM (20 months ago)
Author:
ABCdatos
Message:

1.0.7 version

Location:
magic-robots-txt
Files:
1 deleted
4 edited
7 copied

Legend:

Unmodified
Added
Removed
  • magic-robots-txt/tags/1.0.7/includes/robots.php

    r3018299 r3130867  
    146146    // 2 domesticar
    147147    // 3 bloquear
    148     $accion = mrt_conf_carga() + mrt_conf_ahorro() - mrt_interes_robot( $tipo_robot ) - 1;
     148    $accion = intval( mrt_conf_carga() ) + intval( mrt_conf_ahorro() ) - intval( mrt_interes_robot( $tipo_robot ) ) - 1;
    149149    if ( $accion < 0 ) {
    150150        $accion = 0;
  • magic-robots-txt/tags/1.0.7/magic-robots-txt.php

    r3061689 r3130867  
    44 * Plugin URI:  https://taller.abcdatos.net/robots-txt-wordpress/
    55 * Description: Manages robots access control via robots.txt
    6  * Version:     1.0.6
     6 * Version:     1.0.7
    77 * Author:      ABCdatos
    88 * Author URI:  https://taller.abcdatos.net/
  • magic-robots-txt/tags/1.0.7/readme.txt

    r3129275 r3130867  
    44Requires at least: 4.2
    55Tested up to: 6.6
    6 Stable tag: 1.0.6
     6Stable tag: 1.0.7
    77Requires PHP: 5.4
    88License: GPLv2
     
    9595== Changelog ==
    9696
     97= 1.0.7 - Aug 5, 2024 =
     98- Fixed bug when no initial configiration is done.
     99
    97100= 1.0.6 - Aug 1, 2024 =
    98101- WordPress 6.6 basic compatibility checked.
  • magic-robots-txt/trunk/includes/robots.php

    r3018299 r3130867  
    146146    // 2 domesticar
    147147    // 3 bloquear
    148     $accion = mrt_conf_carga() + mrt_conf_ahorro() - mrt_interes_robot( $tipo_robot ) - 1;
     148    $accion = intval( mrt_conf_carga() ) + intval( mrt_conf_ahorro() ) - intval( mrt_interes_robot( $tipo_robot ) ) - 1;
    149149    if ( $accion < 0 ) {
    150150        $accion = 0;
  • magic-robots-txt/trunk/magic-robots-txt.php

    r3061689 r3130867  
    44 * Plugin URI:  https://taller.abcdatos.net/robots-txt-wordpress/
    55 * Description: Manages robots access control via robots.txt
    6  * Version:     1.0.6
     6 * Version:     1.0.7
    77 * Author:      ABCdatos
    88 * Author URI:  https://taller.abcdatos.net/
  • magic-robots-txt/trunk/readme.txt

    r3129275 r3130867  
    44Requires at least: 4.2
    55Tested up to: 6.6
    6 Stable tag: 1.0.6
     6Stable tag: 1.0.7
    77Requires PHP: 5.4
    88License: GPLv2
     
    9595== Changelog ==
    9696
     97= 1.0.7 - Aug 5, 2024 =
     98- Fixed bug when no initial configiration is done.
     99
    97100= 1.0.6 - Aug 1, 2024 =
    98101- WordPress 6.6 basic compatibility checked.
Note: See TracChangeset for help on using the changeset viewer.