summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'shared/classes/1conf_build_common.php')
-rw-r--r--shared/classes/1conf_build_common.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/shared/classes/1conf_build_common.php b/shared/classes/1conf_build_common.php
index af20eba..27c2198 100644
--- a/shared/classes/1conf_build_common.php
+++ b/shared/classes/1conf_build_common.php
@@ -54,7 +54,10 @@ abstract class conf_build_common extends sql_row_obj {
public function init() {
global $S;
$this->owner=$S['user']->id;
- $this->status=1;
+ if ($this->table == 'configurations')
+ $this->status=1;
+ else
+ $this->status='queued';
$fails=0;
while (true) {
$id=randstring(6);