From 5786644c76a52f9380222f36f5c9f832396f5e67 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Mon, 25 Feb 2019 17:13:13 +0100 Subject: [PATCH] fix installation for current development for now; fixes #661 Signed-off-by: Michael Kaufmann --- install/lib/class.FroxlorInstall.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/lib/class.FroxlorInstall.php b/install/lib/class.FroxlorInstall.php index 0c266d5b..ba101c35 100644 --- a/install/lib/class.FroxlorInstall.php +++ b/install/lib/class.FroxlorInstall.php @@ -739,7 +739,7 @@ class FroxlorInstall // language selection $language_options = ''; foreach ($this->_languages as $language_name => $language_file) { - $language_options .= makeoption($language_name, $language_file, $this->_activelng, true, true); + $language_options .= \Froxlor\UI\HTML::makeoption($language_name, $language_file, $this->_activelng, true, true); } // get language-form-template eval("\$content .= \"" . $this->_getTemplate("lngform") . "\";");