[PC-BSD Commits] r760 - pcbsd/trunk/PCInstall
svn at pcbsd.org
svn at pcbsd.org
Thu Sep 20 21:26:21 PDT 2007
Author: kris
Date: 2007-09-20 21:26:20 -0700 (Thu, 20 Sep 2007)
New Revision: 760
Modified:
pcbsd/trunk/PCInstall/pcinstall.ui.h
Log:
Fixed "/./" on upgrade
Modified: pcbsd/trunk/PCInstall/pcinstall.ui.h
===================================================================
--- pcbsd/trunk/PCInstall/pcinstall.ui.h 2007-09-20 16:50:21 UTC (rev 759)
+++ pcbsd/trunk/PCInstall/pcinstall.ui.h 2007-09-21 04:26:20 UTC (rev 760)
@@ -2085,9 +2085,9 @@
// Remove the "x" from the start
if ( Buffer.find("x", 0) == 0)
{
- Buffer.remove(0, 2);
+ Buffer.remove(0, 3);
tmp = Buffer;
- Buffer = "/" + tmp;
+ Buffer = tmp;
}
// Set the Label to current file
More information about the Commits
mailing list