diff options
-rw-r--r-- | source3/web/swat.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source3/web/swat.c b/source3/web/swat.c index af01d1f31b..cbf5ba8989 100644 --- a/source3/web/swat.c +++ b/source3/web/swat.c @@ -580,7 +580,11 @@ static void ViewModeBoxes(int mode) ****************************************************************************/ static void welcome_page(void) { - include_html("help/welcome.html"); + if (file_exist("help/welcome.html", NULL)) { + include_html("help/welcome.html"); + } else { + include_html("help/welcome-no-samba-doc.html"); + } } /**************************************************************************** |