Merge pull request #1367 from wallabag/v2-fix-actions-label

action labels depend on status
This commit is contained in:
Jeremy Benoist 2015-08-19 11:20:22 +02:00
commit 2e02b50409

View File

@ -265,7 +265,7 @@ class EntryController extends Controller
$this->get('session')->getFlashBag()->add(
'notice',
'Entry archived'
'Entry ' . ($entry->isArchived() ? 'archived' : 'unarchived')
);
return $this->redirect($request->headers->get('referer'));
@ -290,7 +290,7 @@ class EntryController extends Controller
$this->get('session')->getFlashBag()->add(
'notice',
'Entry starred'
'Entry ' . ($entry->isStarred() ? 'starred' : 'unstarred')
);
return $this->redirect($request->headers->get('referer'));