Zeile 53 | Zeile 53 |
---|
$plugins->run_hooks("admin_config_mycode_toggle_status_commit");
|
$plugins->run_hooks("admin_config_mycode_toggle_status_commit");
|
$db->update_query("mycode", $mycode_update, "cid='".$mybb->get_input('cid', MyBB::INPUT_INT)."'");
| $db->update_query("mycode", $mycode_update, "cid='{$mycode['cid']}'");
|
$cache->update_mycode();
| $cache->update_mycode();
|
Zeile 250 | Zeile 250 |
---|
$plugins->run_hooks("admin_config_mycode_edit_commit");
|
$plugins->run_hooks("admin_config_mycode_edit_commit");
|
$db->update_query("mycode", $updated_mycode, "cid='".$mybb->get_input('cid', MyBB::INPUT_INT)."'");
| $db->update_query("mycode", $updated_mycode, "cid='{$mycode['cid']}'");
|
$cache->update_mycode();
| $cache->update_mycode();
|
Zeile 428 | Zeile 428 |
---|
$page->output_footer(); }
|
$page->output_footer(); }
|
| /** * @param string $regex * @param string $replacement * @param string $test * * @return array */
|
function test_regex($regex, $replacement, $test) { $array = array();
| function test_regex($regex, $replacement, $test) { $array = array();
|