Location after successfull upload Location after successfull upload
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Location after successfull upload

Started by Αndré, August 14, 2008, 08:34:18 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Αndré

I think the next step to do, after a successfull upload, should be configurable. In my case, i don't want to edit the title, description etc. of the uploaded pictures, but set the thumbnail & description of the album (modifyalb.php).

So i modded the jupload.php as a workaround in 3.2.3

I have changed:
case 'edit_uploaded_pics':
require("$juploadRootDirectory/page/edit_uploaded_pics.php");
break;

to:
case 'edit_uploaded_pics':
//require("$juploadRootDirectory/page/edit_uploaded_pics.php"); // by muu
header("Location: modifyalb.php?album=$album"); // by muu
break;