aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/EntryController.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-07-10 21:32:25 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2017-12-18 14:50:04 +0100
commitc1c0f09949c85218b720280d84eca70dad51b65a (patch)
tree892de551fe0ec2e866cecef82c6602c4fd4bc99a /src/Wallabag/CoreBundle/Controller/EntryController.php
parentef5c8a7d01d7b3f0041455503499ab67e2206e0d (diff)
downloadwallabag-c1c0f09949c85218b720280d84eca70dad51b65a.tar.gz
wallabag-c1c0f09949c85218b720280d84eca70dad51b65a.tar.zst
wallabag-c1c0f09949c85218b720280d84eca70dad51b65a.zip
Added given_url in entry table
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller/EntryController.php')
-rw-r--r--src/Wallabag/CoreBundle/Controller/EntryController.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/EntryController.php b/src/Wallabag/CoreBundle/Controller/EntryController.php
index b7fdea27..3ac0f8a6 100644
--- a/src/Wallabag/CoreBundle/Controller/EntryController.php
+++ b/src/Wallabag/CoreBundle/Controller/EntryController.php
@@ -78,6 +78,7 @@ class EntryController extends Controller
78 return $this->redirect($this->generateUrl('view', ['id' => $existingEntry->getId()])); 78 return $this->redirect($this->generateUrl('view', ['id' => $existingEntry->getId()]));
79 } 79 }
80 80
81 $entry->setGivenUrl($entry->getUrl());
81 $this->updateEntry($entry); 82 $this->updateEntry($entry);
82 83
83 $em = $this->getDoctrine()->getManager(); 84 $em = $this->getDoctrine()->getManager();