[Scummvm-cvs-logs] scummvm-web old-design -> aaa7e1777fa05692f06d568d9c1f5c9b8f96a049
sev-
sev at scummvm.org
Sat Apr 9 15:10:24 CEST 2016
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-web' repo located at https://github.com/scummvm/scummvm-web .
Summary:
aaa7e1777f OLDWEB: Fix undefined value warning
Commit: aaa7e1777fa05692f06d568d9c1f5c9b8f96a049
https://github.com/scummvm/scummvm-web/commit/aaa7e1777fa05692f06d568d9c1f5c9b8f96a049
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-04-09T15:10:00+02:00
Commit Message:
OLDWEB: Fix undefined value warning
Changed paths:
documentation.php
diff --git a/documentation.php b/documentation.php
index 94d4a5f..de6f69b 100644
--- a/documentation.php
+++ b/documentation.php
@@ -20,7 +20,7 @@ sidebar_start();
echo html_round_frame_start("ScummVM Documentation","");
echo html_frame_start("","100%",1,1);
-$view = $_GET['view'];
+$view = isset($_GET['view']) ? $_GET['view'] : "";
if ($view and file_exists($file_root."/docs/".$view.".xml"))
{
More information about the Scummvm-git-logs
mailing list