Changeset 3190618
- Timestamp:
- 11/17/2024 12:50:06 PM (17 months ago)
- Location:
- proteccion-datos-rgpd/trunk
- Files:
-
- 3 edited
-
admin/options.php (modified) (1 diff)
-
proteccion-datos-rgpd.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
proteccion-datos-rgpd/trunk/admin/options.php
r3063809 r3190618 880 880 function pdrgpd_enlace_pagina_wp( $url ) { 881 881 $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 ); 885 890 return $html; 886 891 } -
proteccion-datos-rgpd/trunk/proteccion-datos-rgpd.php
r3114062 r3190618 4 4 * Plugin URI: https://taller.abcdatos.net/plugin-rgpd-wordpress/ 5 5 * 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.6 76 * Version: 0.68-dev 7 7 * Author: ABCdatos 8 8 * Author URI: https://taller.abcdatos.net/ -
proteccion-datos-rgpd/trunk/readme.txt
r3114062 r3190618 3 3 Tags: privacidad,rgpd,proteccion,datos,legal 4 4 Requires at least: 4.2 5 Tested up to: 6. 65 Tested up to: 6.7 6 6 Stable tag: 0.67 7 7 Requires PHP: 5.3 … … 177 177 == Changelog == 178 178 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 179 184 = 0.67 = 180 185 *Jul 08 2024*
Note: See TracChangeset
for help on using the changeset viewer.