diff options
| author | spiderr <spiderr@bitweaver.org> | 2024-04-14 17:48:05 -0400 |
|---|---|---|
| committer | spiderr <spiderr@bitweaver.org> | 2024-04-14 17:48:05 -0400 |
| commit | fcb89ed55ad78a594a691cf2509b34935714772f (patch) | |
| tree | a6ab96cc970e6eda84a090d102ef07d7ba762929 | |
| parent | fd8528d52f1be3e8794ab743f8e66442164a8c1f (diff) | |
| download | fisheye-fcb89ed55ad78a594a691cf2509b34935714772f.tar.gz fisheye-fcb89ed55ad78a594a691cf2509b34935714772f.tar.bz2 fisheye-fcb89ed55ad78a594a691cf2509b34935714772f.zip | |
fix parameters to fisheye_handle_upload
| -rw-r--r-- | upload.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ require_once( FISHEYE_PKG_INCLUDE_PATH.'upload_inc.php'); $gBitSystem->verifyPermission( 'p_fisheye_upload' ); if( !empty( $_FILES ) ) { - $upErrors = fisheye_handle_upload( $_FILES ); + $upErrors = fisheye_handle_upload( $_FILES, $_REQUEST ); if( empty( $upErrors ) ) { bit_redirect( $gContent->getDisplayUrl() ); } else { |
