Changeset 3294815
- Timestamp:
- 05/16/2025 01:55:34 PM (10 months ago)
- Location:
- bing-website-translator/trunk
- Files:
-
- 3 edited
-
bing-website-translator.php (modified) (2 diffs)
-
classes/admin.class.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bing-website-translator/trunk/bing-website-translator.php
r2928095 r3294815 6 6 * Description: This plugin brings the power of Bing's automatic translation service to translate your website into 40+ languages. It also comes with a slick admin panel, so it can be installed into your client's website without losing the professional look and feel of your work. 7 7 * Author: Prisna 8 * Version: 1.0. 38 * Version: 1.0.4 9 9 * Author URI: http://www.prisna.net/ 10 10 * License: GPL2+ … … 14 14 15 15 define('PRISNA_BWT__MINIMUM_WP_VERSION', '3.3'); 16 define('PRISNA_BWT__VERSION', '1.0. 3');16 define('PRISNA_BWT__VERSION', '1.0.4'); 17 17 18 18 define('PRISNA_BWT__PLUGIN_DIR', plugin_dir_path(__FILE__)); -
bing-website-translator/trunk/classes/admin.class.php
r1049409 r3294815 275 275 return null; 276 276 277 $decode = base64_decode($value);277 $decode = @base64_decode($value); 278 278 279 279 if ($decode === false) { … … 282 282 } 283 283 284 $unserialize = @unserialize($decode); 284 $to_unserialize = preg_match('/O:\d+:(["\'])[^\1]+?\1:\d+:{/i', $decode) ? '' : $decode; 285 286 $unserialize = @unserialize($to_unserialize, array('allowed_classes' => false)); 285 287 286 288 if (!is_array($unserialize)) { -
bing-website-translator/trunk/readme.txt
r2928095 r3294815 3 3 Tags: translation plugin, automatic translation, machine translation, automatic translate, bing website translator, bing translator, bing language translator, language translate, language translator, multi language, translate, translation 4 4 Requires PHP: 5.6 5 Stable tag: 1.0. 35 Stable tag: 1.0.4 6 6 Requires at least: 3.3 7 7 Tested up to: 6.0
Note: See TracChangeset
for help on using the changeset viewer.