67cef6d7 by Marty Penner

Moving notifications attachments one directory deeper. refs #1375

1 parent 1a872222
...@@ -83,7 +83,7 @@ function display_page() { ...@@ -83,7 +83,7 @@ function display_page() {
83 $text = $_POST['text']; 83 $text = $_POST['text'];
84 $html = $_POST['html']; 84 $html = $_POST['html'];
85 $attachments = array(); 85 $attachments = array();
86 $upload_dir = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'uploads' . DIRECTORY_SEPARATOR; 86 $upload_dir = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'uploads' . DIRECTORY_SEPARATOR . 'notifications' . DIRECTORY_SEPARATOR;
87 87
88 fixFilesArray($_FILES['attachment']); 88 fixFilesArray($_FILES['attachment']);
89 89
......