aboutsummaryrefslogtreecommitdiff
path: root/mod/file/start.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-01-06 01:56:30 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-01-06 01:56:30 +0000
commitffca510fca9f902930dcbb1893bb6b5c5e1e8e3a (patch)
tree55bba14274aeba35ced042eb7f3f3f5826fc7b56 /mod/file/start.php
parent15fd80978f5cfd56038fd077f92a6ec860d86847 (diff)
downloadelgg-ffca510fca9f902930dcbb1893bb6b5c5e1e8e3a.tar.gz
elgg-ffca510fca9f902930dcbb1893bb6b5c5e1e8e3a.tar.bz2
switched from new to add
git-svn-id: http://code.elgg.org/elgg/trunk@7846 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/file/start.php')
-rw-r--r--mod/file/start.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/file/start.php b/mod/file/start.php
index 46503b3a7..88213fc5c 100644
--- a/mod/file/start.php
+++ b/mod/file/start.php
@@ -70,7 +70,7 @@ function file_init() {
* User's files: pg/file/owner/<username>
* Friends' files: pg/file/friends/<username>
* View file: pg/file/view/<guid>/<title>
- * New file: pg/file/new/<guid>
+ * New file: pg/file/add/<guid>
* Edit file: pg/file/edit/<guid>
* Group files: pg/file/group/<guid>/owner
*
@@ -102,7 +102,7 @@ function file_page_handler($page) {
set_input('guid', $page[1]);
include "$file_dir/view.php";
break;
- case 'new':
+ case 'add':
set_input('guid', $page[1]);
include "$file_dir/upload.php";
break;