1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-02 20:57:26 +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 * Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt) * GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
* *
* Plugin - Chatbox
*
*/ */
require_once("../../class2.php"); require_once("../../class2.php");
@@ -103,7 +105,7 @@ $text = "
</tr> </tr>
<tr> <tr>
<td>".CHBLAN_36."</td> <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> </tr>
"; ";

View File

@@ -6,11 +6,6 @@
* Released under the terms and conditions of the * Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt) * GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
* *
* Plugin - Chatbox
*
* $URL$
* $Id$
*
*/ */
//define("CHBLAN_1", "Chatbox settings updated."); //define("CHBLAN_1", "Chatbox settings updated.");
@@ -43,7 +38,7 @@ define("CHBLAN_26", "One month");
define("CHBLAN_27", "- Delete all posts -"); define("CHBLAN_27", "- Delete all posts -");
define("CHBLAN_28", "Chatbox pruned."); 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_30", "Layer height");
define("CHBLAN_31", "Show emoticons"); define("CHBLAN_31", "Show emoticons");
define("CHBLAN_32", "Moderator userclass"); define("CHBLAN_32", "Moderator userclass");