Fix calendar sidebar issue - changed holder from 'contentholder' to 'sidebarholder'
[elgg.git] / _calendar / edit_event.php
blob4ab2a6542159535a15986cf75d423541782a17e3
1 <?php
2 require("../includes.php");
5 run("calendar:init");
6 run("profile:init");
7 run("friends:init");
9 define("context", "calendar");
12 global $calendar_id;
15 $title = run("profile:display:name") . " :: " . gettext("Calendar");
17 $body = run("calendar:edit_event", array($_GET["event_id"]));
19 $body = run("templates:draw", array(
20 'context' => 'contentholder',
21 'title' => $title,
22 'body' => $body
26 echo run("templates:draw:page", array(
27 $title, $body