aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/entities.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/entities.php')
-rw-r--r--engine/lib/entities.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php
index fb161bbd1..66f421a6d 100644
--- a/engine/lib/entities.php
+++ b/engine/lib/entities.php
@@ -488,8 +488,10 @@
$access_id = (int)$access_id;
$time = time();
- if ($type=="") throw new InvalidParameterException("Entity type must be set.");
- if ($owner_guid==0) throw new InvalidParameterException("owner_guid must not be 0");
+ if ($type=="") throw new InvalidParameterException("Entity type must be set.");
+
+ // Erased by Ben: sometimes we need unauthenticated users to create things! (eg users on registration)
+ // if ($owner_guid==0) throw new InvalidParameterException("owner_guid must not be 0");
return insert_data("INSERT into {$CONFIG->dbprefix}entities (type, subtype, owner_guid, access_id, time_created, time_updated) values ('$type',$subtype, $owner_guid, $access_id, $time, $time)");
}