Changeset 2877748
- Timestamp:
- 03/10/2023 09:53:03 AM (3 years ago)
- Location:
- greek-multi-tool
- Files:
-
- 60 added
- 3 edited
-
tags/2.1.5 (added)
-
tags/2.1.5/LICENSE.txt (added)
-
tags/2.1.5/README.txt (added)
-
tags/2.1.5/admin (added)
-
tags/2.1.5/admin/class-grmlt-plugin-admin.php (added)
-
tags/2.1.5/admin/css (added)
-
tags/2.1.5/admin/css/bootstrap.min.css (added)
-
tags/2.1.5/admin/css/bootstrap.min.css.map (added)
-
tags/2.1.5/admin/css/grmlt-plugin-admin.css (added)
-
tags/2.1.5/admin/css/settings-page-body.css (added)
-
tags/2.1.5/admin/css/settings-page-switches.css (added)
-
tags/2.1.5/admin/functions (added)
-
tags/2.1.5/admin/functions/function.js (added)
-
tags/2.1.5/admin/functions/greek-multi-tool-redirect.php (added)
-
tags/2.1.5/admin/functions/oldtranslator.php (added)
-
tags/2.1.5/admin/functions/translator-diphthongs.php (added)
-
tags/2.1.5/admin/functions/translator.php (added)
-
tags/2.1.5/admin/images (added)
-
tags/2.1.5/admin/images/grmlt-wave.png (added)
-
tags/2.1.5/admin/images/grmlt-welcome.png (added)
-
tags/2.1.5/admin/images/icon-128x128.png (added)
-
tags/2.1.5/admin/images/icon-256x256.png (added)
-
tags/2.1.5/admin/index.php (added)
-
tags/2.1.5/admin/js (added)
-
tags/2.1.5/admin/js/bootstrap.min.js (added)
-
tags/2.1.5/admin/js/bootstrap.min.js.map (added)
-
tags/2.1.5/admin/js/grmlt-plugin-admin.js (added)
-
tags/2.1.5/admin/js/popper.min.js (added)
-
tags/2.1.5/admin/js/popper.min.js.map (added)
-
tags/2.1.5/admin/partials (added)
-
tags/2.1.5/admin/partials/grmlt-plugin-admin-display-loader.php (added)
-
tags/2.1.5/admin/partials/settings-page (added)
-
tags/2.1.5/admin/partials/settings-page/301-redirect.php (added)
-
tags/2.1.5/admin/partials/settings-page/convert-old-permalinks.php (added)
-
tags/2.1.5/admin/partials/settings-page/grmlt-plugin-admin-main-settings-page.php (added)
-
tags/2.1.5/admin/partials/settings-page/permalinks-settings.php (added)
-
tags/2.1.5/admin/partials/settings-page/uppercase-accent-remover-settings.php (added)
-
tags/2.1.5/grmlt-plugin.php (added)
-
tags/2.1.5/includes (added)
-
tags/2.1.5/includes/class-grmlt-plugin-activator.php (added)
-
tags/2.1.5/includes/class-grmlt-plugin-deactivator.php (added)
-
tags/2.1.5/includes/class-grmlt-plugin-i18n.php (added)
-
tags/2.1.5/includes/class-grmlt-plugin-loader.php (added)
-
tags/2.1.5/includes/class-grmlt-plugin.php (added)
-
tags/2.1.5/includes/index.php (added)
-
tags/2.1.5/index.php (added)
-
tags/2.1.5/languages (added)
-
tags/2.1.5/languages/grmlt-plugin.mo (added)
-
tags/2.1.5/languages/grmlt-plugin.po (added)
-
tags/2.1.5/languages/grmlt-plugin.pot (added)
-
tags/2.1.5/public (added)
-
tags/2.1.5/public/class-grmlt-plugin-public.php (added)
-
tags/2.1.5/public/css (added)
-
tags/2.1.5/public/css/grmlt-plugin-public.css (added)
-
tags/2.1.5/public/index.php (added)
-
tags/2.1.5/public/js (added)
-
tags/2.1.5/public/js/grmlt-plugin-public.js (added)
-
tags/2.1.5/public/partials (added)
-
tags/2.1.5/public/partials/grmlt-plugin-public-display.php (added)
-
tags/2.1.5/uninstall.php (added)
-
trunk/admin/functions/oldtranslator.php (modified) (1 diff)
-
trunk/grmlt-plugin.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
greek-multi-tool/trunk/admin/functions/oldtranslator.php
r2816809 r2877748 65 65 $posts = $wpdb->get_results("SELECT ID, post_name, post_title FROM {$wpdb->posts} WHERE post_name REGEXP('[^A-Za-z0-9\-]+') AND post_status IN ('publish', 'future', 'private')"); 66 66 foreach ( (array) $posts as $post ) { 67 $sanitized_name = grmlt_old_sanitizer($post->post_title); 67 $sanitized_name_var = grmlt_old_sanitizer($post->post_title); 68 $sanitized_name = preg_replace("/[^A-Za-z0-9-]+/","",$sanitized_name_var); 68 69 if ( $post->post_name != $sanitized_name ) { 69 70 $wpdb->update($wpdb->posts, array( 'post_name' => $sanitized_name ), array( 'ID' => $post->ID )); -
greek-multi-tool/trunk/grmlt-plugin.php
r2845464 r2877748 2 2 /** 3 3 * @link https://bigdrop.gr 4 * @since 2.1.44 * @since 1.0.0 5 5 * @package Grmlt_Plugin 6 6 * … … 9 9 * Plugin URI: https://bigdrop.gr/greek-multi-tool 10 10 * Description: This plugin provides a handful of tools and key functionalities to simplify and fix the greek language used in your webpage. For example it change the greek character urls to latin, remove the uppercase accents. 11 * Version: 2.1. 411 * Version: 2.1.5 12 12 * Author: BigDrop.gr 13 13 * Author URI: https://bigdrop.gr … … 28 28 * Currently plugin version. 29 29 */ 30 define( 'GRMLT_PLUGIN_VERSION', '2.1. 4' );30 define( 'GRMLT_PLUGIN_VERSION', '2.1.5' ); 31 31 32 32 /** -
greek-multi-tool/trunk/readme.txt
r2845464 r2877748 3 3 Tags: greek, greeklish, permalinks, accent remover, multi tool 4 4 Requires at least: 5.4 5 Stable tag: 2.1. 45 Stable tag: 2.1.5 6 6 Tested up to: 6.1.1 7 7 Requires PHP: 7.4 … … 192 192 * Fix compatibility with WP 6.1.1 193 193 194 = 2.1.5 = 195 196 * Fixed bug where 301 redirect url would construct incorrectly incase the post title included a non alphanumeric ( A-Z or 0-9 ) character. 197 194 198 == Upgrade Notice == 195 199 Make sure to keep this plugin up to date, to avoid any issue with the translation functionalities.
Note: See TracChangeset
for help on using the changeset viewer.