1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-21 05:02:02 +02:00

Chatbox plugin fixes #127

This commit is contained in:
Tijn Kuyper 2013-03-04 10:46:17 +01:00
parent 94a1235c0c
commit 7edd5b3e90
2 changed files with 4 additions and 7 deletions

View File

@ -6,6 +6,8 @@
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
* Plugin - Chatbox
*
*/
require_once("../../class2.php");
@ -103,7 +105,7 @@ $text = "
</tr>
<tr>
<td>".CHBLAN_36."</td>
<td>".$frm->radio_multi('cb_layer', array(0 => CHBLAN_37, 1 => CHBLAN_29, 2 => CHBLAN_38), $pref['cb_layer'], true, false) /* FIXME $frm->text('cb_layer', $pref['cb_layer_height'], 3)*/."</td>
<td>".$frm->radio_multi('cb_layer', array(0 => CHBLAN_37, 1 => str_replace("[x]", $frm->text('cb_layer_height', $pref['cb_layer_height'], 3), CHBLAN_29), 2 => CHBLAN_38), $pref['cb_layer'], true)."</td>
</tr>
";

View File

@ -6,11 +6,6 @@
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
* Plugin - Chatbox
*
* $URL$
* $Id$
*
*/
//define("CHBLAN_1", "Chatbox settings updated.");
@ -43,7 +38,7 @@ define("CHBLAN_26", "One month");
define("CHBLAN_27", "- Delete all posts -");
define("CHBLAN_28", "Chatbox pruned.");
define("CHBLAN_29", "Display chatbox inside scrolling layer");
define("CHBLAN_29", "Display chatbox inside scrolling layer with height [x]"); // [x] will be replaced automatically
define("CHBLAN_30", "Layer height");
define("CHBLAN_31", "Show emoticons");
define("CHBLAN_32", "Moderator userclass");