Environment
Situation
Resolution
Cause
An update to the iprint.js file has hard coded instructions to redirect the page to the /ipp page instead of the previous page.
The iprint.js file is located at /var/opt/novell/iprint/htdocs/scripts/
Status
Reported to EngineeringAdditional Information
The parent.document.location.replace() references the ipp page, not the last page displayed.
-----<snip>-----
function PrinterIsNotInstalledAction()
{
if(onNotInstalledActionGbl.toLowerCase() == "install")
{
if(platformTypeGbl != PLATFORM_TYPE_MAC)
{
PromptForInstall();
}
else
{
// Mac client asks if you want to install the printer
InstallPrinter();
/* Ajay Bug 750088, 760884, 761359, 770035
Fix for firefox iPrint plugin since it fails to invoke ipp page after plugin process is completed.*/
//window.setTimeout("GoBack();",20);
parent.document.location.replace("http://"+document.location.hostname+"/ipp");
/* End */
-----<snip>-----