summaryrefslogtreecommitdiffstats
path: root/app/class/stage.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/stage.class.php
parent3b47c5f3876b8c46d199c615e95fe671293be7b7 (diff)
parente7228676ce51bf69cc974fc0bd8f8135c51fd036 (diff)
downloadscrott-a4db163ae8633c3740be2c2582364cb3f5acb9db.tar.gz
scrott-a4db163ae8633c3740be2c2582364cb3f5acb9db.zip
Merge branch 'bug/refreshObj' into dev
Diffstat (limited to 'app/class/stage.class.php')
-rw-r--r--app/class/stage.class.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/class/stage.class.php b/app/class/stage.class.php
index 760a9a2..74c5f42 100644
--- a/app/class/stage.class.php
+++ b/app/class/stage.class.php
@@ -152,7 +152,9 @@ class stage extends object
if (!($prev = $this->getPrev()))
return false;
- return $prev->moveForward();
+ $ret = $prev->moveForward();
+ $this->refreshObj();
+ return $ret;
}
/*