Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/eula.html *
|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/eula.html *
|
* $Id: calendar.php 3478 2007-11-15 04:11:36Z Tikitiki $
| * $Id: calendar.php 3596 2008-01-20 08:27:39Z Tikitiki $
|
*/
define("IN_MYBB", 1);
| */
define("IN_MYBB", 1);
|
Zeile 298 | Zeile 298 |
---|
// Process the adding of an event. if($mybb->input['action'] == "do_addevent" && $mybb->request_method == "post") {
|
// Process the adding of an event. if($mybb->input['action'] == "do_addevent" && $mybb->request_method == "post") {
|
| // Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
$plugins->run_hooks("calendar_do_addevent_start");
// Set up eventhandler.
| $plugins->run_hooks("calendar_do_addevent_start");
// Set up eventhandler.
|
Zeile 415 | Zeile 418 |
---|
// Process the editing of an event. if($mybb->input['action'] == "do_editevent" && $mybb->request_method == "post") {
|
// Process the editing of an event. if($mybb->input['action'] == "do_editevent" && $mybb->request_method == "post") {
|
| // Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
$plugins->run_hooks("calendar_do_editevent_start");
$query = $db->simple_select(TABLE_PREFIX."events", "*", "eid='{$eid}'");
| $plugins->run_hooks("calendar_do_editevent_start");
$query = $db->simple_select(TABLE_PREFIX."events", "*", "eid='{$eid}'");
|