Completed
Push — master ( 53f161...53f161 )
by Grant
03:58
created
public_html/tc/controller/ContentController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 ini_set("display_errors", 1);
6 6
 set_time_limit(0);
7 7
 
8
-if(!isset($_SESSION)){
8
+if (!isset($_SESSION)) {
9 9
     session_start();
10 10
 }
11 11
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     public static function getContentByLocale($locale) {
30 30
         
31 31
         $content = new Content();
32
-        $labels = ContentDAO::getContentByLocale($locale,"label");
32
+        $labels = ContentDAO::getContentByLocale($locale, "label");
33 33
         //var_dump($labels);
34 34
         $content->setContent($labels);
35 35
         //var_dump($content);
Please login to merge, or discard this patch.
public_html/tc/dao/ResourceDAO.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
     ini_set("display_errors", 1);
6 6
     set_time_limit(0);
7 7
 
8
-    if(!isset($_SESSION)){
8
+    if (!isset($_SESSION)) {
9 9
         session_start();
10 10
     }
11 11
 
Please login to merge, or discard this patch.
public_html/tc/controller/DashboardController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 ini_set("display_errors", 1);
7 7
 set_time_limit(0);
8 8
 
9
-if(!isset($_SESSION)){
9
+if (!isset($_SESSION)) {
10 10
     session_start();
11 11
 }
12 12
 
Please login to merge, or discard this patch.