When you move a product from one category to the next (using the move product feature on that product's page), it says
Quote:
Moved [first product image name].JPG
Click here if you do not want to wait any longer
(or if your browser does not automatically forward you)
|
This should say the product name, not the image name. This is a carry over from the PhotoPost code base.
The typo/bug can be traced back to adm-product.php, where the move/delete product routine calls "move_image_cat" from pp-inc.php to move the product.
Line 1749-52s should be changed from:
Quote:
adminlog( "Moved Image: $bigimage" );
if ( $forward == "yes" ) {
$adesc="{$Globals['pp_lang']['moved']} $bigimage";
|
To:
Quote:
adminlog( "Moved Image: $ptitle" );
if ( $forward == "yes" ) {
$adesc="{$Globals['pp_lang']['moved']} $ptitle";
|
Also the language files in languages/adm-product.php need to be updated to cover this issue from:
Quote:
$Globals['pp_lang']['badmove'] = "You cannot move an image to that category, please try again.";
$Globals['pp_lang']['noneed'] = "No need to move image to same category!";
|
To this:
Quote:
$Globals['pp_lang']['badmove'] = "You cannot move an product to that category, please try again.";
$Globals['pp_lang']['noneed'] = "No need to move product to same category!";
|