Eliminate some php notices caused by use of uninitialized variables
This commit is contained in:
@@ -31,7 +31,7 @@ echo html_frame_start("Create New Application DB Account","400","",0)
|
||||
<?php
|
||||
|
||||
echo "<tr><td class=color1> Wine version </td><td class=color0>";
|
||||
make_bugzilla_version_list("sWineRelease", $aClean['sWineRelease']);
|
||||
echo make_bugzilla_version_list("sWineRelease", isset($aClean['sWineRelease']) ? $aClean['sWineRelease'] : '');
|
||||
echo "</td></tr>";
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user