]> git.mxchange.org Git - friendica.git/blobdiff - library/ezyang/htmlpurifier/plugins/phorum/settings/migrate-sigs-form.php
Replace existing autoloader with Composer-supplied
[friendica.git] / library / ezyang / htmlpurifier / plugins / phorum / settings / migrate-sigs-form.php
diff --git a/library/ezyang/htmlpurifier/plugins/phorum/settings/migrate-sigs-form.php b/library/ezyang/htmlpurifier/plugins/phorum/settings/migrate-sigs-form.php
deleted file mode 100644 (file)
index abea3b5..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-function phorum_htmlpurifier_show_migrate_sigs_form()
-{
-    $frm = new PhorumInputForm ('', "post", "Migrate");
-    $frm->hidden("module", "modsettings");
-    $frm->hidden("mod", "htmlpurifier");
-    $frm->hidden("migrate-sigs", "1");
-    $frm->addbreak("Migrate user signatures to HTML");
-    $frm->addMessage('This operation will migrate your users signatures
-        to HTML. <strong>This process is irreversible and must only be performed once.</strong>
-        Type in yes in the confirmation field to migrate.');
-    if (!file_exists(dirname(__FILE__) . '/../migrate.php')) {
-        $frm->addMessage('Migration file does not exist, cannot migrate signatures.
-            Please check <tt>migrate.bbcode.php</tt> on how to create an appropriate file.');
-    } else {
-        $frm->addrow('Confirm:', $frm->text_box("confirmation", ""));
-    }
-    $frm->show();
-}
-
-// vim: et sw=4 sts=4