diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Wallabag/CoreBundle/Controller/EntryController.php | 3 | ||||
-rw-r--r-- | src/Wallabag/CoreBundle/Entity/Entry.php | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/EntryController.php b/src/Wallabag/CoreBundle/Controller/EntryController.php index 83148671..b03f49ed 100644 --- a/src/Wallabag/CoreBundle/Controller/EntryController.php +++ b/src/Wallabag/CoreBundle/Controller/EntryController.php | |||
@@ -355,9 +355,6 @@ class EntryController extends Controller | |||
355 | { | 355 | { |
356 | $this->checkUserAction($entry); | 356 | $this->checkUserAction($entry); |
357 | 357 | ||
358 | $version = $this->getDoctrine()->getManager()->getConnection()->query('SELECT version();')->fetchColumn(); | ||
359 | var_dump($version); | ||
360 | |||
361 | return $this->render( | 358 | return $this->render( |
362 | 'WallabagCoreBundle:Entry:entry.html.twig', | 359 | 'WallabagCoreBundle:Entry:entry.html.twig', |
363 | ['entry' => $entry] | 360 | ['entry' => $entry] |
diff --git a/src/Wallabag/CoreBundle/Entity/Entry.php b/src/Wallabag/CoreBundle/Entity/Entry.php index 4c22cf9c..4c9d518f 100644 --- a/src/Wallabag/CoreBundle/Entity/Entry.php +++ b/src/Wallabag/CoreBundle/Entity/Entry.php | |||
@@ -47,7 +47,7 @@ class Entry | |||
47 | /** | 47 | /** |
48 | * @var string | 48 | * @var string |
49 | * | 49 | * |
50 | * @ORM\Column(name="uuid", type="guid", nullable=true) | 50 | * @ORM\Column(name="uuid", type="string", length=23, nullable=true) |
51 | * | 51 | * |
52 | * @Groups({"entries_for_user", "export_all"}) | 52 | * @Groups({"entries_for_user", "export_all"}) |
53 | */ | 53 | */ |