aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engine/lib/entities.php2
-rw-r--r--engine/lib/objects.php5
-rw-r--r--engine/lib/sites.php1
-rw-r--r--engine/lib/users.php2
4 files changed, 5 insertions, 5 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php
index 7e1bd8ab7..6fc8f2acc 100644
--- a/engine/lib/entities.php
+++ b/engine/lib/entities.php
@@ -468,7 +468,7 @@
// Increment the portion counter
$this->attributes['tables_loaded'] ++;
-
+ echo "LOADED::: " . $this->attributes['tables_loaded'];
// Cache object handle
if ($this->attributes['guid']) cache_entity($this);
diff --git a/engine/lib/objects.php b/engine/lib/objects.php
index d1e9b78c2..19b264d1c 100644
--- a/engine/lib/objects.php
+++ b/engine/lib/objects.php
@@ -33,9 +33,8 @@
$this->attributes['type'] = "object";
$this->attributes['title'] = "";
- $this->attributes['description'] = "";
-
-
+ $this->attributes['description'] = "";
+ $this->attributes['tables_split'] = 2;
}
/**
diff --git a/engine/lib/sites.php b/engine/lib/sites.php
index 96e65d7c2..617c62386 100644
--- a/engine/lib/sites.php
+++ b/engine/lib/sites.php
@@ -35,6 +35,7 @@
$this->attributes['name'] = "";
$this->attributes['description'] = "";
$this->attributes['url'] = "";
+ $this->attributes['tables_split'] = 2;
}
/**
diff --git a/engine/lib/users.php b/engine/lib/users.php
index 2718d18b9..ec22db239 100644
--- a/engine/lib/users.php
+++ b/engine/lib/users.php
@@ -39,7 +39,7 @@
$this->attributes['email'] = "";
$this->attributes['language'] = "";
$this->attributes['code'] = "";
-
+ $this->attributes['tables_split'] = 2;
}
/**