Merge pull-request #145 (Json-RPC fix)

This commit is contained in:
Frédéric Guillot
2014-06-26 10:07:15 -03:00
parent e5e355d068
commit 4f67a8da32
2 changed files with 3 additions and 2 deletions

View File

@@ -62,6 +62,7 @@ Contributors:
- Mathgl67: https://github.com/mathgl67 - Mathgl67: https://github.com/mathgl67
- Matthieu Keller: https://github.com/maggick - Matthieu Keller: https://github.com/maggick
- Maxime: https://github.com/EpocDotFr - Maxime: https://github.com/EpocDotFr
- Moraxy: https://github.com/moraxy
- Nala Ginrut: https://github.com/NalaGinrut - Nala Ginrut: https://github.com/NalaGinrut
- Nekohayo: https://github.com/nekohayo - Nekohayo: https://github.com/nekohayo
- Olivier Maridat: https://github.com/oliviermaridat - Olivier Maridat: https://github.com/oliviermaridat

View File

@@ -10,7 +10,7 @@ use Model\User;
use Model\Config; use Model\Config;
use Model\Category; use Model\Category;
use Model\Comment; use Model\Comment;
use Model\Subtask; use Model\SubTask;
use Model\Board; use Model\Board;
use Model\Action; use Model\Action;
@@ -20,7 +20,7 @@ $task = new Task($registry->shared('db'), $registry->shared('event'));
$user = new User($registry->shared('db'), $registry->shared('event')); $user = new User($registry->shared('db'), $registry->shared('event'));
$category = new Category($registry->shared('db'), $registry->shared('event')); $category = new Category($registry->shared('db'), $registry->shared('event'));
$comment = new Comment($registry->shared('db'), $registry->shared('event')); $comment = new Comment($registry->shared('db'), $registry->shared('event'));
$subtask = new Subtask($registry->shared('db'), $registry->shared('event')); $subtask = new SubTask($registry->shared('db'), $registry->shared('event'));
$board = new Board($registry->shared('db'), $registry->shared('event')); $board = new Board($registry->shared('db'), $registry->shared('event'));
$action = new Action($registry->shared('db'), $registry->shared('event')); $action = new Action($registry->shared('db'), $registry->shared('event'));