Some new templates and a bug fix [skip ci]

This commit is contained in:
James Cole
2015-06-20 22:18:54 +02:00
parent 5bf18b69d7
commit e98d556022
5 changed files with 28 additions and 35 deletions

View File

@@ -110,6 +110,7 @@ class Tag extends Model
$journal->tag_count = $count;
$journal->save();
}
return parent::save($options);
}
@@ -131,6 +132,10 @@ class Tag extends Model
*/
public function getDescriptionAttribute($value)
{
if (is_null($value)) {
return $value;
}
return Crypt::decrypt($value);
}