I refined my "Hack" and it can use some edits to make it a bit more elegant with proper links and such, but it works well enough:
1) Copy gallery2.php to gallery2upload.php
and change this:
Code: › $template->set_filenames(array(
'body' => 'gallery2.html')
);
to this:
Code: › $template->set_filenames(array(
'body' => 'gallery2upload.html')
);
2) Edit g2is.php:
Code: › $template->set_filenames(array(
'body' => 'g2is.html')
)
to this
Code: › $template->set_filenames(array(
'body' => 'g2isUp.html')
)
3) In styles/prosilver/template copy g2is.html to g2isUp.html and add the following code just under
Quote: › <!-- INCLUDE simple_header.html -->
Code: › <a href="#"onClick="MyWindow=window.open('http://your.website/gallery2upload.php?g2_view=core.ItemAdmin&g2_subView=core.ItemAdd&g2_itemId=211&g2_return=%2Fgallery2.php%3Fg2_itemId%3D211','MyWindow1','toolbar=no,location=no,directories=no, status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=700,left=50,top=50'); return false;">Upload Image to Gallery</A>
<p></p>
4) You will have to adjust the the link for gallery2upload.php for your site and for the default gallery you intend to upload to.
Like I said, it aint pretty, but it works. It still needs to have the g2img display the thumbnails in the order of last loaded display first to make it more convenient, but I am sure someone knows how to do that.