Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

langfilter: dont add languages when none are set to the settings #609

Merged
merged 1 commit into from
Jun 1, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
langfilter: dont add languages when none are set to the settings
  • Loading branch information
tobiasd committed Jun 1, 2018
commit 745fe99e081500da73dd9e167f733200e4f97b9c
4 changes: 0 additions & 4 deletions langfilter/langfilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,6 @@ function langfilter_addon_settings(App $a, &$s)
$minconfidence = PConfig::get(local_user(), 'langfilter', 'minconfidence') * 100;
$minlength = PConfig::get(local_user(), 'langfilter', 'minlength');

if (!$languages) {
$languages = 'en,de,fr,it,es';
}

$t = get_markup_template("settings.tpl", "addon/langfilter/");
$s .= replace_macros($t, [
'$title' => L10n::t("Language Filter"),
Expand Down