diff --git a/reactos/subsys/system/explorer/doxy-footer.html b/reactos/subsys/system/explorer/doxy-footer.html
index 17ff02a4f85..447482dcb3e 100644
--- a/reactos/subsys/system/explorer/doxy-footer.html
+++ b/reactos/subsys/system/explorer/doxy-footer.html
@@ -3,7 +3,7 @@
ROS Explorer Source Code Documentation
- generated on 27.12.2003 by
+ generated on 31.12.2003 by
|
diff --git a/reactos/subsys/system/explorer/explorer.cpp b/reactos/subsys/system/explorer/explorer.cpp
index 3c818c46435..c81b3190726 100644
--- a/reactos/subsys/system/explorer/explorer.cpp
+++ b/reactos/subsys/system/explorer/explorer.cpp
@@ -290,7 +290,12 @@ int main(int argc, char* argv[])
if (startupinfo.dwFlags & STARTF_USESHOWWINDOW)
nShowCmd = startupinfo.wShowWindow;
- return wWinMain(GetModuleHandle(NULL), 0, GetCommandLine(), nShowCmd);
+ LPWSTR cmdline = GetCommandLineW();
+
+ while(*cmdline && !_istspace(*cmdline))
+ ++cmdline;
+
+ return wWinMain(GetModuleHandle(NULL), 0, cmdline, nShowCmd);
}
#endif // __MINGW && UNICODE