diff options
Diffstat (limited to 'buildscripts/texbuilder')
-rw-r--r-- | buildscripts/texbuilder/Page2Tex.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/buildscripts/texbuilder/Page2Tex.php b/buildscripts/texbuilder/Page2Tex.php index ad712183..04a60f93 100644 --- a/buildscripts/texbuilder/Page2Tex.php +++ b/buildscripts/texbuilder/Page2Tex.php @@ -216,6 +216,9 @@ class Page2Tex //since
$html = preg_replace('/<com:SinceVersion[^>]+>/', '', $html);
+ //requiresversion
+ $html = preg_replace('/<com:RequiresVersion[^>]+>/', '', $html);
+
$html = html_entity_decode($html);
return $html;
|