Fix calendar sidebar issue - changed holder from 'contentholder' to 'sidebarholder'
[elgg.git] / _files / edit_folder.php
blob45ceb4f80136c0b714d95fb24f10e23b64777839
1 <?php
3 // ELGG manage files page
5 // Run includes
6 require("../includes.php");
8 // Initialise functions for user details, icon management and profile management
9 run("userdetails:init");
10 run("profile:init");
11 run("files:init");
13 define("context", "files");
15 // Whose files are we looking at?
17 global $page_owner;
18 $title = run("profile:display:name") . " :: " . gettext("Edit Folder");
20 $body = run("content:folders:edit");
21 $body .= run("files:folders:edit");
23 echo run("templates:draw:page", array(
24 $title,
25 run("templates:draw", array(
26 'context' => 'contentholder',
27 'title' => $title,
28 'body' => $body