Zeile 321 | Zeile 321 |
---|
{ $update_prefix['groups'] = '-1'; }
|
{ $update_prefix['groups'] = '-1'; }
|
$db->update_query('threadprefixes', $update_prefix, "pid='{$mybb->input['pid']}'");
| |
$plugins->run_hooks('admin_config_thread_prefixes_edit_prefix_commit');
|
$plugins->run_hooks('admin_config_thread_prefixes_edit_prefix_commit');
|
| $db->update_query('threadprefixes', $update_prefix, "pid='{$prefix['pid']}'");
|
// Log admin action
|
// Log admin action
|
log_admin_action($mybb->input['pid'], $mybb->input['prefix']);
| log_admin_action($prefix['pid'], $mybb->input['prefix']);
|
$cache->update_threadprefixes();
flash_message($lang->success_thread_prefix_updated, 'success');
| $cache->update_threadprefixes();
flash_message($lang->success_thread_prefix_updated, 'success');
|
Zeile 348 | Zeile 348 |
---|
$page->output_nav_tabs($sub_tabs, "edit_prefix");
$form = new Form('index.php?module=config-thread_prefixes&action=edit_prefix', 'post');
|
$page->output_nav_tabs($sub_tabs, "edit_prefix");
$form = new Form('index.php?module=config-thread_prefixes&action=edit_prefix', 'post');
|
echo $form->generate_hidden_field('pid', $mybb->input['pid']);
| echo $form->generate_hidden_field('pid', $prefix['pid']);
|
if($errors) {
| if($errors) {
|
Zeile 356 | Zeile 356 |
---|
} else {
|
} else {
|
$query = $db->simple_select('threadprefixes', '*', "pid = '{$mybb->input['pid']}'");
| $query = $db->simple_select('threadprefixes', '*', "pid = '{$prefix['pid']}'");
|
$threadprefix = $db->fetch_array($query);
$mybb->input['prefix'] = $threadprefix['prefix'];
| $threadprefix = $db->fetch_array($query);
$mybb->input['prefix'] = $threadprefix['prefix'];
|
Zeile 385 | Zeile 385 |
---|
{ $group_checked[1] = ''; $group_checked[2] = "checked=\"checked\"";
|
{ $group_checked[1] = ''; $group_checked[2] = "checked=\"checked\"";
|
}
| }
|
}
$form_container = new FormContainer($lang->prefix_options);
| }
$form_container = new FormContainer($lang->prefix_options);
|
Zeile 405 | Zeile 405 |
---|
} }); $('.'+id+'s').each(function(e)
|
} }); $('.'+id+'s').each(function(e)
|
{
| {
|
$(this).hide(); }); if($('#'+id+'_'+checked))
| $(this).hide(); }); if($('#'+id+'_'+checked))
|
Zeile 422 | Zeile 422 |
---|
<tr> <td valign=\"top\"><small>{$lang->forums_colon}</small></td> <td>".$form->generate_forum_select('forum_1_forums[]', $mybb->input['forum_1_forums'], array('multiple' => true, 'size' => 5))."</td>
|
<tr> <td valign=\"top\"><small>{$lang->forums_colon}</small></td> <td>".$form->generate_forum_select('forum_1_forums[]', $mybb->input['forum_1_forums'], array('multiple' => true, 'size' => 5))."</td>
|
</tr> </table> </dd> </dl>
| </tr> </table> </dd> </dl>
|
<script type=\"text/javascript\"> checkAction('forum'); </script>";
| <script type=\"text/javascript\"> checkAction('forum'); </script>";
|
Zeile 465 | Zeile 465 |
---|
if(empty($prefix['pid'])) { flash_message($lang->error_invalid_thread_prefix, 'error');
|
if(empty($prefix['pid'])) { flash_message($lang->error_invalid_thread_prefix, 'error');
|
admin_redirect('index.php?module=config-thread_prefixes');
| admin_redirect('index.php?module=config-thread_prefixes');
|
}
// User clicked no if($mybb->input['no'])
|
}
// User clicked no if($mybb->input['no'])
|
{
| {
|
admin_redirect('index.php?module=config-thread_prefixes'); }
|
admin_redirect('index.php?module=config-thread_prefixes'); }
|
$plugins->run_hooks('admin_config_thread_prefixes_delete_prefix');
| $plugins->run_hooks('admin_config_thread_prefixes_delete_prefix');
|
if($mybb->request_method == 'post') { // Remove prefix from existing threads $update_threads = array('prefix' => 0);
|
if($mybb->request_method == 'post') { // Remove prefix from existing threads $update_threads = array('prefix' => 0);
|
$db->update_query('threads', $update_threads, "prefix='{$prefix['pid']}'");
| |
// Delete prefix $db->delete_query('threadprefixes', "pid='{$prefix['pid']}'");
$plugins->run_hooks('admin_config_thread_prefixes_delete_thread_prefix_commit');
|
// Delete prefix $db->delete_query('threadprefixes', "pid='{$prefix['pid']}'");
$plugins->run_hooks('admin_config_thread_prefixes_delete_thread_prefix_commit');
|
| $db->update_query('threads', $update_threads, "prefix='{$prefix['pid']}'");
|
// Log admin action log_admin_action($prefix['pid'], $prefix['prefix']);
| // Log admin action log_admin_action($prefix['pid'], $prefix['prefix']);
|
Zeile 496 | Zeile 497 |
---|
} else {
|
} else {
|
$page->output_confirm_action("index.php?module=config-thread_prefixes&action=delete_prefix&pid={$mybb->input['pid']}", $lang->confirm_thread_prefix_deletion);
| $page->output_confirm_action("index.php?module=config-thread_prefixes&action=delete_prefix&pid={$prefix['pid']}", $lang->confirm_thread_prefix_deletion);
|
} }
| } }
|