]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - application/Updater.php
Add markdown_escape setting
[github/shaarli/Shaarli.git] / application / Updater.php
index f0d02814b5599654b0c6638e40e02e86068a5ab7..555d4c256158364dbb69fbfc9ef911d121b8796c 100644 (file)
@@ -256,6 +256,28 @@ class Updater
 
         return true;
     }
+
+    /**
+     * * `markdown_escape` is a new setting, set to true as default.
+     *
+     * If the markdown plugin was already enabled, escaping is disabled to avoid
+     * breaking existing entries.
+     */
+    public function updateMethodEscapeMarkdown()
+    {
+        if ($this->conf->exists('security.markdown_escape')) {
+            return true;
+        }
+
+        if (in_array('markdown', $this->conf->get('general.enabled_plugins'))) {
+            $this->conf->set('security.markdown_escape', false);
+        } else {
+            $this->conf->set('security.markdown_escape', true);
+        }
+        $this->conf->write($this->isLoggedIn);
+
+        return true;
+    }
 }
 
 /**