WoWInterface SVN OpenRDX

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk/RDX/ObjectMgr/Install
    from Rev 608 to Rev 676
    Reverse comparison

Rev 608 → Rev 676

OOBE.lua
308,7 → 308,7
end
-- Show the post install options window.
if(VFL.tsize(toggles) > 0) then
ShowInstallerDialog(VFLI.i18n("RDX6 Installer"), VFLI.i18n("The following post-installation options are available:"), InstallPhase3);
ShowInstallerDialog(VFLI.i18n("RDX Installer"), VFLI.i18n("The following post-installation options are available:"), InstallPhase3);
else
InstallDone();
end
327,7 → 327,7
 
-- Step 5: Show the first install options screen and wait for user feedback before proceeding.
if(VFL.tsize(toggles) > 0) then
ShowInstallerDialog(VFLI.i18n("RDX6 Installer"), VFLI.i18n("RDX has detected packages to install. The following user options are available. Select Decline to decline all, or Cancel to close."), InstallPhase2, InstallFreeAll, InstallDone);
ShowInstallerDialog(VFLI.i18n("RDX Installer"), VFLI.i18n("RDX has detected packages to install. The following user options are available. Select Decline to decline all, or Cancel to close."), InstallPhase2, InstallFreeAll, InstallDone);
else
InstallPhase2();
end
434,7 → 434,10
end
end
-- If no oobes were loaded, peace out.
if(not loadedOOBEs) then return; end
if(not loadedOOBEs) then
RDX.InstallerDone();
return;
end
VFLT.ZMSchedule(2, DeferredInstaller);
end