diff options
| author | Cash Costello <cash.costello@gmail.com> | 2013-01-23 07:16:15 -0500 | 
|---|---|---|
| committer | Cash Costello <cash.costello@gmail.com> | 2013-01-23 07:16:15 -0500 | 
| commit | b60f6e6b921c2d25867c23790130be9a0386c0a4 (patch) | |
| tree | 1670730a6bc1ce3bc09899df881f186eeb2f9683 /mod/file/start.php | |
| parent | e60f092f80d247fbdc3089689bbf5ddb229762db (diff) | |
| download | elgg-b60f6e6b921c2d25867c23790130be9a0386c0a4.tar.gz elgg-b60f6e6b921c2d25867c23790130be9a0386c0a4.tar.bz2  | |
better solution for 1.7 file compatibility than pull request 471
Diffstat (limited to 'mod/file/start.php')
| -rw-r--r-- | mod/file/start.php | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/file/start.php b/mod/file/start.php index 172042332..7ea050ce3 100644 --- a/mod/file/start.php +++ b/mod/file/start.php @@ -121,8 +121,11 @@ function file_page_handler($page) {  			file_register_toggle();  			include "$file_dir/friends.php";  			break; -		case 'view':  		case 'read': // Elgg 1.7 compatibility +			register_error(elgg_echo("changebookmark")); +			forward("file/view/{$page[1]}"); +			break; +		case 'view':  			set_input('guid', $page[1]);  			include "$file_dir/view.php";  			break;  | 
