4images Forum & Community

4images Modifications / Modifikationen => Mods & Plugins (Requests & Discussions) => Topic started by: pjotrek on October 26, 2012, 10:03:28 AM

Title: [SOLVED] Link to page with image after upload
Post by: pjotrek on October 26, 2012, 10:03:28 AM
When user is adding new picture and he push the submit button there is displayed page with that picture but without comment form and comments - only single picture.
What sould I do to make link of that picture to the page with this picture with comment form and comments ?

Ok I did it myself

In member.php find :

$content .= "<table border=\"0\" align=\"center\">\n<tr>\n<td>\n".$media."\n</td>\n</tr>\n</table>\n";

and replace it with :

$content .= "<table border=\"0\" align=\"center\">\n<tr>\n<td>\n<a href=\"details.php?image_id=".$image_id."\">".$media."</a>\n</td>\n</tr>\n</table>\n";