X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;ds=sidebyside;f=wwwroot%2Finc%2Fresult.inc;h=e7e99dad47e38eca3b7aadfdf094f4c4ffdf40e2;hb=8fc54d8f71a9ba9526cd396fe8f5c6f4764fb6c3;hp=e2afa3d815cf0026885dc3f8a23ffe06bbaa6da8;hpb=30a8a52a642cda1b743887289cf6e1b5feb41e60;p=mirrors%2FKyberia-bloodline.git diff --git a/wwwroot/inc/result.inc b/wwwroot/inc/result.inc index e2afa3d..e7e99da 100644 --- a/wwwroot/inc/result.inc +++ b/wwwroot/inc/result.inc @@ -39,7 +39,7 @@ class result extends PDOStatement { if (is_int($column) == true) { return (string) $this->_currentRecord[$column - 1]; } else { - return (string) $this->_currentRecord["$column"]; + return (string) isset($this->_currentRecord["$column"]) ? $this->_currentRecord["$column"]: ""; } }