summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2012-04-09 01:05:59 +0200
committerFlorian Pritz <bluewind@xinu.at>2012-04-09 20:48:13 +0200
commit2f149783585b88033f425a2ef4a0fdb06c8fb9f9 (patch)
treeb0e5a711fb0ac70a51b1355d60a0623ad85a92d7
parentf91d9970017aebc6ad2d6ff897e04f5faedf0549 (diff)
c/file: Style changes
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r--application/controllers/file.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/application/controllers/file.php b/application/controllers/file.php
index 0252e96e8..e693a8667 100644
--- a/application/controllers/file.php
+++ b/application/controllers/file.php
@@ -198,6 +198,7 @@ class File extends CI_Controller {
$this->data["msg"] = "Deletion failed. Do you really own that file?";
}
}
+
$this->load->view($this->var->view_dir.'/header', $this->data);
$this->load->view($this->var->view_dir.'/delete_form', $this->data);
$this->load->view($this->var->view_dir.'/footer', $this->data);
@@ -304,7 +305,8 @@ class File extends CI_Controller {
}
/* remove files without database entries */
- function clean_stale_files() {
+ function clean_stale_files()
+ {
if (!$this->input->is_cli_request()) return;
$upload_path = $this->config->item("upload_path");