summaryrefslogtreecommitdiff
path: root/app/Controller
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-12-31 12:56:29 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-12-31 12:56:29 -0500
commit198f8d6a8e39fe7bb21faafe53b12e351feca8b7 (patch)
treebd625191515a7ffa7bd5226c51c18b5364d1e7c1 /app/Controller
parent772804add8095eea9b3ec2a832c2f82fbb9a6fd5 (diff)
Add debug option
Diffstat (limited to 'app/Controller')
-rw-r--r--app/Controller/Base.php8
-rw-r--r--app/Controller/Project.php2
2 files changed, 6 insertions, 4 deletions
diff --git a/app/Controller/Base.php b/app/Controller/Base.php
index 4afcba37..cd807d56 100644
--- a/app/Controller/Base.php
+++ b/app/Controller/Base.php
@@ -100,9 +100,11 @@ abstract class Base
*/
public function __destruct()
{
- // foreach ($this->container['db']->getLogMessages() as $message) {
- // $this->container['logger']->addDebug($message);
- // }
+ if (DEBUG) {
+ foreach ($this->container['db']->getLogMessages() as $message) {
+ $this->container['logger']->addDebug($message);
+ }
+ }
}
/**
diff --git a/app/Controller/Project.php b/app/Controller/Project.php
index 6079971a..95779154 100644
--- a/app/Controller/Project.php
+++ b/app/Controller/Project.php
@@ -574,7 +574,7 @@ class Project extends Base
*/
public function create(array $values = array(), array $errors = array())
{
- $is_private = $this->request->getIntegerParam('private', ! $this->userSession->isAdmin());
+ $is_private = $this->request->getIntegerParam('private', $this->userSession->isAdmin() ? 0 : 1);
$this->response->html($this->template->layout('project/new', array(
'board_selector' => $this->projectPermission->getAllowedProjects($this->userSession->getId()),