From e675910b285c7384e6fa8cf34095468d76c111f4 Mon Sep 17 00:00:00 2001 From: Vasileios Georgitzikis Date: Thu, 1 Aug 2013 17:09:24 -0700 Subject: [PATCH] fixed a bug on fetching the actual code --- .../Codebender/LibraryBundle/Controller/DefaultController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Symfony/src/Codebender/LibraryBundle/Controller/DefaultController.php b/Symfony/src/Codebender/LibraryBundle/Controller/DefaultController.php index ab377a89..63dab783 100644 --- a/Symfony/src/Codebender/LibraryBundle/Controller/DefaultController.php +++ b/Symfony/src/Codebender/LibraryBundle/Controller/DefaultController.php @@ -58,6 +58,8 @@ public function listAction() public function getCodeAction() { + $arduino_library_files = $this->container->getParameter('arduino_library_directory')."/"; + $finder = new Finder(); $request = Request::createFromGlobals();