Changeset 82
- Timestamp:
- 03/19/2009 11:44:46 PM (3 years ago)
- File:
-
- 1 edited
-
trunk/WordPress/plugin/transposh/transposh.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WordPress/plugin/transposh/transposh.php
r80 r82 230 230 231 231 //The original is saved in db in its escaped form 232 $original = $wpdb->escape( $original);232 $original = $wpdb->escape(html_entity_decode($original, ENT_NOQUOTES, 'UTF-8')); 233 233 234 234 if(ENABLE_APC && function_exists('apc_fetch')) … … 436 436 //The original content is encoded as base64 before it is sent (i.e. token), after we 437 437 //decode it should just the same after it was parsed. 438 $original = $wpdb->escape( $original);438 $original = $wpdb->escape(html_entity_decode($original, ENT_NOQUOTES, 'UTF-8')); 439 439 440 440 $update = "REPLACE INTO $table_name (original, translated, lang, source)
Note: See TracChangeset
for help on using the changeset viewer.
