move product import to shelf

This commit is contained in:
JT Smith 2008-07-12 21:40:27 +00:00
parent 3642628dc6
commit cc0105a9a4
9 changed files with 317 additions and 432 deletions

View file

@ -2,6 +2,7 @@
- fixed: Payment Methods Hover Help Incomplete
- fixed: Payment Method Titles Don't Match Buttons
- fixed: Gallery: Description Text appearing in Album
- Moved product imports to shelves
- fixed: Deleting Ticket from Event Management System Asset
- fixed: Thingy Search Broken

View file

@ -27,20 +27,18 @@ my $quiet; # this line required
my $session = start(); # this line required
# upgrade functions go here
moveProductImportToShelf($session);
finish($session); # this line required
#----------------------------------------------------------------------------
# Describe what our function does
#sub exampleFunction {
# my $session = shift;
# print "\tWe're doing some stuff here that you should know about... " unless $quiet;
# # and here's our code
# print "DONE!\n" unless $quiet;
#}
sub moveProductImportToShelf {
my $session = shift;
print "\tMoving product import to shelves... " unless $quiet;
unlink "../../lib/WebGUI/Shop/Products.pm";
$session->db->write("update asset set isSystem=0 where assetId='PBproductimportnode001'");
print "DONE!\n" unless $quiet;
}
# -------------- DO NOT EDIT BELOW THIS LINE --------------------------------