Skip to content

Commit

Permalink
OLDWEB: Fix undefined value warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Apr 9, 2016
1 parent eacac37 commit caac289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation.php
Expand Up @@ -20,7 +20,7 @@
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"))
{
Expand Down

0 comments on commit caac289

Please sign in to comment.