move the null assignment of $orig up a bit

This commit is contained in:
Evan Prodromou 2012-03-07 15:58:47 -06:00
parent 1573b5d132
commit 783df54086
1 changed files with 1 additions and 1 deletions

View File

@ -87,10 +87,10 @@ class Spam_score extends Managed_DataObject
function save($notice, $result) {
$orig = null;
$score = Spam_score::staticGet('notice_id', $notice->id);
if (empty($score)) {
$orig = null;
$score = new Spam_score();
} else {
$orig = clone($score);