summaryrefslogtreecommitdiffstats
path: root/app/class/table.class.php
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2017-04-13 23:27:41 -0400
committerMalf Furious <m@lfurio.us>2017-04-13 23:27:41 -0400
commita4db163ae8633c3740be2c2582364cb3f5acb9db (patch)
tree5b3ba05e5687100fc9a953f5e4c72ad75ff06b95 /app/class/table.class.php
parent3b47c5f3876b8c46d199c615e95fe671293be7b7 (diff)
parente7228676ce51bf69cc974fc0bd8f8135c51fd036 (diff)
downloadscrott-a4db163ae8633c3740be2c2582364cb3f5acb9db.tar.gz
scrott-a4db163ae8633c3740be2c2582364cb3f5acb9db.zip
Merge branch 'bug/refreshObj' into dev
Diffstat (limited to '')
-rw-r--r--app/class/table.class.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/class/table.class.php b/app/class/table.class.php
index 45be8c5..c547e43 100644
--- a/app/class/table.class.php
+++ b/app/class/table.class.php
@@ -68,6 +68,15 @@ abstract class table
}
/*
+ * This function uses loadObj to re-initialize this object, if in
+ * the case it gets modified in another scope.
+ */
+ public function refreshObj() : void
+ {
+ $this->loadObj($this->guid);
+ }
+
+ /*
* This function will update this object in the database, or insert new
* data if this object does not yet have a GUID. This function uses the
* $fields array to construct SQL queries.
@@ -118,7 +127,10 @@ abstract class table
foreach ($flds as $fld)
{
if (!isset($this->$fld))
+ {
+ $this->$fld = "";
continue;
+ }
$fld = database::esc($fld);
$fldstr .= $fld . ", ";