mirror of
https://github.com/torrentpier/torrentpier
synced 2025-07-30 03:29:09 -07:00
r582
Чистка голосовавших в оконченных закрытых старых опросах; перенос синхронизаций в админке на ajax; разделение крон-задач обслуживания аттачей от обслуживания форума; разделение ajax-модуля управления пользователями от модуля управлением синхронизацией и очистками кеша в админке; переименование части стандартных функций (отказ от упоминания phpbb); фикс критичной опечатки в ajax.php; фикс крон-задачи чистки кеша и ее логирования. При обновлении не забывайте о выполнении запроса: INSERT INTO `bb_cron` VALUES (22, 1, 'Attach maintenance', 'attach_maintenance.php', 'daily', NULL, '05:00:00', 40, '', '', NULL, 1, '', 0, 1, 0); git-svn-id: https://torrentpier2.googlecode.com/svn/trunk@582 a8ac35ab-4ca4-ca47-4c2d-a49a94f06293
This commit is contained in:
parent
a111c66e94
commit
56b44835ec
32 changed files with 471 additions and 479 deletions
|
@ -190,7 +190,7 @@ BBCode.prototype = {
|
|||
return e.returnValue = false;
|
||||
},
|
||||
|
||||
// Available key combinations and these interpretaions for phpBB are
|
||||
// Available key combinations and these interpretaions for BB are
|
||||
// TAB - Insert TAB char
|
||||
// CTRL-TAB - Next form field (usual TAB)
|
||||
// SHIFT-ALT-PAGEUP - Add an Attachment
|
||||
|
@ -226,7 +226,7 @@ BBCode.prototype = {
|
|||
return this._cancelEvent(e);
|
||||
}
|
||||
|
||||
// Hot keys (PHPbb-specific!!!).
|
||||
// Hot keys
|
||||
var form = this.textarea.form;
|
||||
var submitter = null;
|
||||
if (e.keyCode == this.VK_PAGE_UP && e.shiftKey && !e.ctrlKey && e.altKey)
|
||||
|
@ -294,7 +294,6 @@ BBCode.prototype = {
|
|||
if (text.indexOf("\n") >= 0) text = "\n" + text + "\n";
|
||||
return text;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Emulation of innerText for Mozilla.
|
||||
|
@ -441,5 +440,4 @@ function transliterate (msg, e)
|
|||
if (e) e.disabled = false;
|
||||
}, 1);
|
||||
}
|
||||
|
||||
// Translit END
|
||||
// Translit END
|
Loading…
Add table
Add a link
Reference in a new issue