fixing 'undefined index' error

This commit is contained in:
Benjamin Sonntag 2014-03-28 16:08:21 +01:00
parent 537f0fb638
commit dfdd41655d
1 changed files with 4 additions and 1 deletions

View File

@ -295,7 +295,10 @@ class DB_Sql {
* @return integer
*/
function f($Name) {
return $this->Record[$Name];
if (isset($this->Record[$Name]))
return $this->Record[$Name];
else
return false;
}
function p($Name) {