Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: smilies.php 5016 2010-06-12 00:24:02Z RyanGordon $
| * $Id: smilies.php 5676 2011-11-29 12:10:19Z Tomm $
|
*/
// Disallow direct access to this file for security reasons
| */
// Disallow direct access to this file for security reasons
|
Zeile 656 | Zeile 656 |
---|
} $table->construct_cell("<img src=\"{$image}\" alt=\"\" />", array("class" => "align_center"));
|
} $table->construct_cell("<img src=\"{$image}\" alt=\"\" />", array("class" => "align_center"));
|
$table->construct_cell("{$smilie['name']}"); $table->construct_cell($smilie['find']);
| $table->construct_cell(htmlspecialchars_uni($smilie['name'])); $table->construct_cell(htmlspecialchars_uni($smilie['find']));
|
$table->construct_cell("<a href=\"index.php?module=config-smilies&action=edit&sid={$smilie['sid']}\">{$lang->edit}</a>", array("class" => "align_center")); $table->construct_cell("<a href=\"index.php?module=config-smilies&action=delete&sid={$smilie['sid']}&my_post_key={$mybb->post_code}\" onclick=\"return AdminCP.deleteConfirmation(this, '{$lang->confirm_smilie_deletion}')\">{$lang->delete}</a>", array("class" => "align_center"));
| $table->construct_cell("<a href=\"index.php?module=config-smilies&action=edit&sid={$smilie['sid']}\">{$lang->edit}</a>", array("class" => "align_center")); $table->construct_cell("<a href=\"index.php?module=config-smilies&action=delete&sid={$smilie['sid']}&my_post_key={$mybb->post_code}\" onclick=\"return AdminCP.deleteConfirmation(this, '{$lang->confirm_smilie_deletion}')\">{$lang->delete}</a>", array("class" => "align_center"));
|
Zeile 666 | Zeile 666 |
---|
if($table->num_rows() == 0) {
|
if($table->num_rows() == 0) {
|
$table->construct_cell($lang->no_smilies, array('colspan' => 4));
| $table->construct_cell($lang->no_smilies, array('colspan' => 5));
|
$table->construct_row(); }
| $table->construct_row(); }
|