PluginProbe
Translate and Go multilingual – Automatic AI translation – wpLingua / 2.16.7
Translate and Go multilingual – Automatic AI translation – wpLingua v2.16.7
2.16.7 2.16.6 2.16.5 2.16.4 2.16.3 2.16.2 2.16.1 2.16.0 2.15.2 2.15.1 2.15.0 2.14.3 2.14.2 2.14.1 2.14.0 2.13.1 2.13.0 2.12.3 2.12.2 2.12.1 trunk 1.0.3 1.0.4 1.0.5 1.1.0 All 112 releases
← All changes | inc/translator/html.php +6 -6 2.12.32.16.7 View file →
@@ -84,14 +84,14 @@
84 84 /**
85 85 * Dom is ready: check, apply filter and return
86 86 */
87 87
88 - $dom->save();
89 - $dom = (string) wplng_sdh_str_get_html( $dom );
90 - $dom = str_replace( '_wplingua_no_translate_', '', $dom );
88 + $html = $dom->save();
91 89
92 - if ( empty( $dom ) ) {
93 - return $html;
90 + $html = str_replace( '_wplingua_no_translate_', '', $html );
91 +
92 + if ( empty( $html ) ) {
93 + return '';
94 94 }
95 95
96 - return $dom;
96 + return $html;
97 97 }