Make sure convert.php works with php5.6.1 on linux
authorgggeek <giunta.gaetano@gmail.com>
Sat, 21 Feb 2015 21:48:13 +0000 (21:48 +0000)
committergggeek <giunta.gaetano@gmail.com>
Sat, 21 Feb 2015 21:48:13 +0000 (21:48 +0000)
doc/convert.php

index 9cfe0f3..a7e08cb 100644 (file)
@@ -33,7 +33,12 @@ if (version_compare(PHP_VERSION, '5.4', "<")) {
         ini_set("xsl.security_prefs", XSL_SECPREF_CREATE_DIRECTORY | XSL_SECPREF_WRITE_FILE);
     }
 } else {
-    $proc->setSecurityPreferences(XSL_SECPREF_CREATE_DIRECTORY | XSL_SECPREF_WRITE_FILE);
+    // the php online docs only mention setSecurityPrefs, but somehow some installs have setSecurityPreferences...
+    if (method_exists('XSLTProcessor', 'setSecurityPrefs')) {
+        $proc->setSecurityPrefs(XSL_SECPREF_CREATE_DIRECTORY | XSL_SECPREF_WRITE_FILE);
+    } else {
+        $proc->setSecurityPreferences(XSL_SECPREF_CREATE_DIRECTORY | XSL_SECPREF_WRITE_FILE);
+    }
 }
 $proc->importStyleSheet($xsl); // attach the xsl rules