Plugin Directory

Changeset 3190618


Ignore:
Timestamp:
11/17/2024 12:50:06 PM (17 months ago)
Author:
ABCdatos
Message:

WP 6.7 compatibility readme.txt and minor changes development version

Location:
proteccion-datos-rgpd/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • proteccion-datos-rgpd/trunk/admin/options.php

    r3063809 r3190618  
    880880function pdrgpd_enlace_pagina_wp( $url ) {
    881881    $pagina = pdrgpd_carga_pagina_sitio( $url );
    882     // $anchor = get_the_title( $pagina );
    883     $anchor = $pagina->post_title;
    884     $html   = pdrgpd_enlace_nueva_ventana( $url, $anchor );
     882    // Verifica si $pagina no es null y es un objeto.
     883    if ( $pagina && isset( $pagina->post_title ) ) {
     884        $anchor = $pagina->post_title;
     885    } else {
     886        // Maneja el caso donde la página no se encuentre.
     887        $anchor = __( 'Page not found', 'proteccion-datos-rgpd' );
     888    }
     889    $html = pdrgpd_enlace_nueva_ventana( $url, $anchor );
    885890    return $html;
    886891}
  • proteccion-datos-rgpd/trunk/proteccion-datos-rgpd.php

    r3114062 r3190618  
    44 * Plugin URI:  https://taller.abcdatos.net/plugin-rgpd-wordpress/
    55 * Description: Arrange your site to GDPR (General Data Protection Regulation) and LSSICE as well as other required tasks based on required configurations ettings.
    6  * Version:     0.67
     6 * Version:     0.68-dev
    77 * Author:      ABCdatos
    88 * Author URI:  https://taller.abcdatos.net/
  • proteccion-datos-rgpd/trunk/readme.txt

    r3114062 r3190618  
    33Tags: privacidad,rgpd,proteccion,datos,legal
    44Requires at least: 4.2
    5 Tested up to: 6.6
     5Tested up to: 6.7
    66Stable tag: 0.67
    77Requires PHP: 5.3
     
    177177== Changelog ==
    178178
     179= 0.68-dev =
     180**** ** 2024*
     181* Improved handling for non-existent pages specified in control panel options.
     182* WordPress 6.7 basic compatibility checked.
     183
    179184= 0.67 =
    180185*Jul 08 2024*
Note: See TracChangeset for help on using the changeset viewer.