warning removed
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / result.inc
index e2afa3d815cf0026885dc3f8a23ffe06bbaa6da8..e7e99dad47e38eca3b7aadfdf094f4c4ffdf40e2 100644 (file)
@@ -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"]: "";
                }
        }
 
This page took 0.143028 seconds and 4 git commands to generate.