diff options
author | Zach Copley <zach@status.net> | 2010-11-16 06:10:49 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-11-16 06:10:49 +0000 |
commit | 64a29bd401bb7f38e174a6529c062dd3c20bfe5b (patch) | |
tree | 94de56ecf36fd32b63b82b3b7b2d1d6cc2077339 | |
parent | 0b573e0d2b5c15e296d2520ba87cbb6a80f3837d (diff) |
Fix syntax error
-rw-r--r-- | lib/currentuserdesignaction.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/currentuserdesignaction.php b/lib/currentuserdesignaction.php index 7cd892022..012d30ad6 100644 --- a/lib/currentuserdesignaction.php +++ b/lib/currentuserdesignaction.php @@ -63,6 +63,8 @@ class CurrentUserDesignAction extends Action parent::prepare($argarray); $this->cur = common_current_user(); + + return true; } /** @@ -76,7 +78,7 @@ class CurrentUserDesignAction extends Action { if (!empty($this->cur)) { - $design = $cur->getDesign(); + $design = $this->cur->getDesign(); if (!empty($design)) { return $design; |