From 3eac0c794f874a65c7ffa9b9d2752726a25da3f6 Mon Sep 17 00:00:00 2001 From: SecretR Date: Tue, 18 Dec 2012 13:08:46 +0200 Subject: [PATCH] Administration settings - social tab key/secret placeholders fix --- e107_admin/prefs.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_admin/prefs.php b/e107_admin/prefs.php index 1b83f6f91..5f54f40e6 100644 --- a/e107_admin/prefs.php +++ b/e107_admin/prefs.php @@ -1028,8 +1028,8 @@ $text .= " $text .= "
"; foreach($v as $tk=>$idk) { - $opt['placeholder'] = $tk; - $text .= "
".$frm->text('social_login['.$prov.'][keys]['.$tk.']', vartrue($pref['social_login'][$prov]['keys'][$tk]),100,$opt); + $eopt = array('placeholder'=> $tk); + $text .= "
".$frm->text('social_login['.$prov.'][keys]['.$tk.']', vartrue($pref['social_login'][$prov]['keys'][$tk]), 100, $eopt); } $text .= "
";