Completed
Branch master (9c4346)
by Patrick
10:57
created
Auth/class.LDAPGroup.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -264,7 +264,7 @@
 block discarded – undo
264 264
             throw new \Exception('data must be set for LDAPGroup');
265 265
         }
266 266
         $filter = new \Data\Filter("cn eq $name");
267
-	$group = $data->read($data->group_base, $filter);
267
+    $group = $data->read($data->group_base, $filter);
268 268
         if($group === false || !isset($group[0]))
269 269
         {
270 270
             return false;
Please login to merge, or discard this patch.
Auth/class.LDAPUser.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@
 block discarded – undo
241 241
             $obj['userPassword'] = $this->generateLDAPPass($password);
242 242
             if(isset($this->ldap_obj->uniqueidentifier))
243 243
             {
244
-               $obj['uniqueIdentifier'] = null;
244
+                $obj['uniqueIdentifier'] = null;
245 245
             }
246 246
             //Make sure we are bound in write mode
247 247
             $auth = \AuthProvider::getInstance();
Please login to merge, or discard this patch.
Auth/class.SQLAuthenticator.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -116,26 +116,26 @@
 block discarded – undo
116 116
 
117 117
     private function getDataTable($name, $pending=false)
118 118
     {
119
-         if(isset($this->dataTables[$name]) && isset($this->dataTables[$name][$pending]))
120
-         {
121
-             return $this->dataTables[$name][$pending];
122
-         }
123
-         $dataSet = $this->dataSet;
124
-         if($pending)
125
-         {
126
-             $dataSet = $this->pendingDataSet;
127
-         }
128
-         if($dataSet === null)
129
-         {
130
-             throw new \Exception('Unable to obtain dataset for SQL Authentication!');
131
-         }
132
-         $dataTable = $dataSet[$name];
133
-         if(!isset($this->dataTables[$name]))
134
-         {
135
-             $this->dataTables[$name] = array();
136
-         }
137
-         $this->dataTables[$name][$pending] = $dataTable;
138
-         return $dataTable;
119
+            if(isset($this->dataTables[$name]) && isset($this->dataTables[$name][$pending]))
120
+            {
121
+                return $this->dataTables[$name][$pending];
122
+            }
123
+            $dataSet = $this->dataSet;
124
+            if($pending)
125
+            {
126
+                $dataSet = $this->pendingDataSet;
127
+            }
128
+            if($dataSet === null)
129
+            {
130
+                throw new \Exception('Unable to obtain dataset for SQL Authentication!');
131
+            }
132
+            $dataTable = $dataSet[$name];
133
+            if(!isset($this->dataTables[$name]))
134
+            {
135
+                $this->dataTables[$name] = array();
136
+            }
137
+            $this->dataTables[$name][$pending] = $dataTable;
138
+            return $dataTable;
139 139
     }
140 140
 
141 141
     private function getPendingUserDataTable()
Please login to merge, or discard this patch.
Auth/class.GoogleAuthenticator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
             $ret = $auth->activatePendingUser($user);
67 67
             if($ret === false)
68 68
             {
69
-                 throw new \Exception('Unable to create user! '.$res);
69
+                    throw new \Exception('Unable to create user! '.$res);
70 70
             }
71 71
             return self::SUCCESS;
72 72
         }
Please login to merge, or discard this patch.
Data/class.MongoDataSet.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
         $collections = $this->db->getCollectionNames();
66 66
         if(in_array($name, $collections))
67 67
         {
68
-             return true;
68
+                return true;
69 69
         }
70 70
         return false;
71 71
     }
Please login to merge, or discard this patch.
Data/class.SQLDataTable.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -65,11 +65,11 @@  discard block
 block discarded – undo
65 65
         $ret = $this->dataset->read($this->tablename, $where, 'COUNT(*)');
66 66
         if($ret === false || !isset($ret[0]) || !isset($ret[0]['COUNT(*)']))
67 67
         {
68
-             return false;
68
+                return false;
69 69
         }
70 70
         else
71 71
         {
72
-             return $ret[0]['COUNT(*)'];
72
+                return $ret[0]['COUNT(*)'];
73 73
         }
74 74
     }
75 75
   
@@ -93,8 +93,8 @@  discard block
 block discarded – undo
93 93
 
94 94
     function update($filter, $data)
95 95
     {
96
-         $where = $filter->to_sql_string();
97
-         return $this->dataset->update($this->tablename, $where, $data);
96
+            $where = $filter->to_sql_string();
97
+            return $this->dataset->update($this->tablename, $where, $data);
98 98
     }
99 99
 
100 100
     function create($data)
Please login to merge, or discard this patch.
class.FlipPage.php 1 patch
Indentation   +217 added lines, -217 removed lines patch added patch discarded remove patch
@@ -59,239 +59,239 @@
 block discarded – undo
59 59
 
60 60
 global $jsArray;
61 61
 $jsArray = array(
62
-     JS_JQUERY => array(
63
-         'no' => array(
64
-             'no'  => '/js/common/jquery.js',
65
-             'min' => '/js/common/jquery.min.js'
66
-         ),
67
-         'cdn' => array(
68
-             'no'  => '//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.js',
69
-             'min' => '//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js'
70
-         )
71
-     ),
72
-     JS_JQUERY_UI => array(
73
-         'no' => array(
74
-             'no'  => '/js/common/jquery-ui.js',
75
-             'min' => '/js/common/jquery-ui.min.js'
76
-         ),
77
-         'cdn' => array(
78
-             'no'  => '//ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.js',
79
-             'min' => '//ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js'
80
-         )
81
-     ),
82
-     JS_BOOTSTRAP => array(
83
-         'no' => array(
84
-             'no'  => '/js/common/bootstrap.js',
85
-             'min' => '/js/common/bootstrap.min.js'
86
-         ),
87
-         'cdn' => array(
88
-             'no'  => '//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.js',
89
-             'min' => '//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js'
90
-         )
91
-     ),
92
-     JQUERY_VALIDATE => array(
93
-         'no' => array(
94
-             'no'  => '/js/common/jquery.validate.js',
95
-             'min' => '/js/common/jquery.validate.min.js'
96
-         ),
97
-         'cdn' => array(
98
-             'no'  => '//ajax.aspnetcdn.com/ajax/jquery.validate/1.13.1/jquery.validate.js',
99
-             'min' => '//ajax.aspnetcdn.com/ajax/jquery.validate/1.13.1/jquery.validate.min.js'
100
-         )
101
-     ),
102
-     JQUERY_TOUCH => array(
103
-         'no' => array(
104
-             'no'  => '/js/common/jquery.ui.touch-punch.min.js',
105
-             'min' => '/js/common/jquery.ui.touch-punch.min.js'
106
-         ),
107
-         'cdn' => array(
108
-             'no'  => '//cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.3/jquery.ui.touch-punch.min.js',
109
-             'min' => '//cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.3/jquery.ui.touch-punch.min.js'
110
-         )
111
-     ),
112
-     JS_TINYNAV => array(
113
-         'no' => array(
114
-             'no'  => '/js/common/tinynav.js',
115
-             'min' => '/js/common/tinynav.min.js'
116
-         ),
117
-         'cdn' => array(
118
-             'no'  => '//cdnjs.cloudflare.com/ajax/libs/TinyNav.js/1.2.0/tinynav.js',
119
-             'min' => '//cdnjs.cloudflare.com/ajax/libs/TinyNav.js/1.2.0/tinynav.min.js'
120
-         )
121
-     ),
122
-     JS_BOOTSTRAP_FH => array(
123
-         'no' => array(
124
-             'no'  => '/js/common/bootstrap-formhelpers.js',
125
-             'min' => '/js/common/bootstrap-formhelpers.min.js'
126
-         ),
127
-         'cdn' => array(
128
-             'no'  => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-formhelpers/2.3.0/js/bootstrap-formhelpers.js',
129
-             'min' => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-formhelpers/2.3.0/js/bootstrap-formhelpers.min.js'
130
-         )
131
-     ),
132
-     JS_BOOTSTRAP_SW => array(
133
-         'no' => array(
134
-             'no'  => '/js/common/bootstrap-switch.js',
135
-             'min' => '/js/common/bootstrap-switch.min.js'
136
-         ),
137
-         'cdn' => array(
138
-             'no'  => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.2/js/bootstrap-switch.js',
139
-             'min' => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.2/js/bootstrap-switch.min.js'
140
-         )
141
-     ),
142
-     JS_DATATABLE => array(
143
-         'no' => array(
144
-             'no'  => '/js/common/jquery.dataTables.js',
145
-             'min' => '/js/common/jquery.dataTables.min.js'
146
-         ),
147
-         'cdn' => array(
148
-             'no'  => '//cdn.datatables.net/1.10.7/js/jquery.dataTables.js',
149
-             'min' => '//cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js'
150
-         )
151
-     ),
152
-     JS_CHART => array(
153
-         'no' => array(
154
-             'no'  => '/js/common/Chart.js',
155
-             'min' => '/js/common/Chart.min.js'
156
-         ),
157
-         'cdn' => array(
158
-             'no'  => '//cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.js',
159
-             'min' => '//cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.min.js'
160
-         )
161
-     ),
162
-     JS_METISMENU => array(
163
-         'no' => array(
164
-             'no'  => '/js/common/metisMenu.js',
165
-             'min' => '/js/common/metisMenu.min.js'
166
-         ),
167
-         'cdn' => array(
168
-             'no'  => '//cdnjs.cloudflare.com/ajax/libs/metisMenu/2.0.2/metisMenu.js',
169
-             'min' => '//cdnjs.cloudflare.com/ajax/libs/metisMenu/2.0.2/metisMenu.min.js'
170
-         )
171
-     ),
172
-     JS_BOOTBOX => array(
173
-         'no' => array(
174
-             'no'  => '/js/common/bootbox.js',
175
-             'min' => '/js/common/bootbox.min.js'
176
-         ),
177
-         'cdn' => array(
178
-             'no'  => '//cdnjs.cloudflare.com/ajax/libs/bootbox.js/4.3.0/bootbox.js',
179
-             'min' => '//cdnjs.cloudflare.com/ajax/libs/bootbox.js/4.3.0/bootbox.min.js'
180
-         )
181
-     ),
182
-     JS_DATATABLE_ODATA => array(
183
-         'no' => array(
184
-             'no'  => '/js/common/jquery.dataTables.odata.js',
185
-             'min' => '/js/common/jquery.dataTables.odata.js',
186
-         ),
187
-         'cdn' => array(
188
-             'no'  => '/js/common/jquery.dataTables.odata.js',
189
-             'min' => '/js/common/jquery.dataTables.odata.js',
190
-         )
191
-     ),
192
-     JS_CRYPTO_MD5_JS => array(
193
-         'no' => array(
194
-             'no'  => '/js/common/md5.js',
195
-             'min' => '/js/common/md5.js',
196
-         ),
197
-         'cdn' => array(
198
-             'no'  => '//cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/rollups/md5.js',
199
-             'min' => '//cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/rollups/md5.js',
200
-         )
201
-     ),
202
-     JS_JCROP => array(
203
-         'no' => array(
204
-             'no'  => '/js/common/jquery.Jcrop.min.js',
205
-             'min' => '/js/common/jquery.Jcrop.min.js'
206
-         ),
207
-         'cdn' => array(
208
-             'no'  => '//cdnjs.cloudflare.com/ajax/libs/jquery-jcrop/0.9.12/js/jquery.Jcrop.min.js',
209
-             'min' => '//cdnjs.cloudflare.com/ajax/libs/jquery-jcrop/0.9.12/js/jquery.Jcrop.min.js'
210
-         )
211
-     ),
212
-     JS_TYPEAHEAD => array(
213
-         'no' => array(
214
-             'no'  => '/js/common/typeahead.bundle.js',
215
-             'min' => '/js/common/typeahead.bundle.min.js'
216
-         ),
217
-         'cdn' => array(
218
-             'no'  => '//cdnjs.cloudflare.com/ajax/libs/typeahead.js/0.11.1/typeahead.bundle.js',
219
-             'min' => '//cdnjs.cloudflare.com/ajax/libs/typeahead.js/0.11.1/typeahead.bundle.min.js'
220
-         )
221
-     ),
222
-     JS_FLIPSIDE => array(
223
-         'no' => array(
224
-             'no'  => '/js/common/flipside.js',
225
-             'min' => '/js/common/flipside.min.js'
226
-         ),
227
-         'cdn' => array(
228
-             'no'  => '/js/common/flipside.js',
229
-             'min' => '/js/common/flipside.min.js'
230
-         )
231
-     ),
232
-     JS_LOGIN => array(
233
-         'no' => array(
234
-             'no'  => '/js/common/login.js',
235
-             'min' => '/js/common/login.min.js'
236
-         ),
237
-         'cdn' => array(
238
-             'no'  => '/js/common/login.js',
239
-             'min' => '/js/common/login.min.js'
240
-         )
241
-     )
62
+        JS_JQUERY => array(
63
+            'no' => array(
64
+                'no'  => '/js/common/jquery.js',
65
+                'min' => '/js/common/jquery.min.js'
66
+            ),
67
+            'cdn' => array(
68
+                'no'  => '//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.js',
69
+                'min' => '//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js'
70
+            )
71
+        ),
72
+        JS_JQUERY_UI => array(
73
+            'no' => array(
74
+                'no'  => '/js/common/jquery-ui.js',
75
+                'min' => '/js/common/jquery-ui.min.js'
76
+            ),
77
+            'cdn' => array(
78
+                'no'  => '//ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.js',
79
+                'min' => '//ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js'
80
+            )
81
+        ),
82
+        JS_BOOTSTRAP => array(
83
+            'no' => array(
84
+                'no'  => '/js/common/bootstrap.js',
85
+                'min' => '/js/common/bootstrap.min.js'
86
+            ),
87
+            'cdn' => array(
88
+                'no'  => '//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.js',
89
+                'min' => '//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js'
90
+            )
91
+        ),
92
+        JQUERY_VALIDATE => array(
93
+            'no' => array(
94
+                'no'  => '/js/common/jquery.validate.js',
95
+                'min' => '/js/common/jquery.validate.min.js'
96
+            ),
97
+            'cdn' => array(
98
+                'no'  => '//ajax.aspnetcdn.com/ajax/jquery.validate/1.13.1/jquery.validate.js',
99
+                'min' => '//ajax.aspnetcdn.com/ajax/jquery.validate/1.13.1/jquery.validate.min.js'
100
+            )
101
+        ),
102
+        JQUERY_TOUCH => array(
103
+            'no' => array(
104
+                'no'  => '/js/common/jquery.ui.touch-punch.min.js',
105
+                'min' => '/js/common/jquery.ui.touch-punch.min.js'
106
+            ),
107
+            'cdn' => array(
108
+                'no'  => '//cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.3/jquery.ui.touch-punch.min.js',
109
+                'min' => '//cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.3/jquery.ui.touch-punch.min.js'
110
+            )
111
+        ),
112
+        JS_TINYNAV => array(
113
+            'no' => array(
114
+                'no'  => '/js/common/tinynav.js',
115
+                'min' => '/js/common/tinynav.min.js'
116
+            ),
117
+            'cdn' => array(
118
+                'no'  => '//cdnjs.cloudflare.com/ajax/libs/TinyNav.js/1.2.0/tinynav.js',
119
+                'min' => '//cdnjs.cloudflare.com/ajax/libs/TinyNav.js/1.2.0/tinynav.min.js'
120
+            )
121
+        ),
122
+        JS_BOOTSTRAP_FH => array(
123
+            'no' => array(
124
+                'no'  => '/js/common/bootstrap-formhelpers.js',
125
+                'min' => '/js/common/bootstrap-formhelpers.min.js'
126
+            ),
127
+            'cdn' => array(
128
+                'no'  => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-formhelpers/2.3.0/js/bootstrap-formhelpers.js',
129
+                'min' => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-formhelpers/2.3.0/js/bootstrap-formhelpers.min.js'
130
+            )
131
+        ),
132
+        JS_BOOTSTRAP_SW => array(
133
+            'no' => array(
134
+                'no'  => '/js/common/bootstrap-switch.js',
135
+                'min' => '/js/common/bootstrap-switch.min.js'
136
+            ),
137
+            'cdn' => array(
138
+                'no'  => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.2/js/bootstrap-switch.js',
139
+                'min' => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.2/js/bootstrap-switch.min.js'
140
+            )
141
+        ),
142
+        JS_DATATABLE => array(
143
+            'no' => array(
144
+                'no'  => '/js/common/jquery.dataTables.js',
145
+                'min' => '/js/common/jquery.dataTables.min.js'
146
+            ),
147
+            'cdn' => array(
148
+                'no'  => '//cdn.datatables.net/1.10.7/js/jquery.dataTables.js',
149
+                'min' => '//cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js'
150
+            )
151
+        ),
152
+        JS_CHART => array(
153
+            'no' => array(
154
+                'no'  => '/js/common/Chart.js',
155
+                'min' => '/js/common/Chart.min.js'
156
+            ),
157
+            'cdn' => array(
158
+                'no'  => '//cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.js',
159
+                'min' => '//cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.min.js'
160
+            )
161
+        ),
162
+        JS_METISMENU => array(
163
+            'no' => array(
164
+                'no'  => '/js/common/metisMenu.js',
165
+                'min' => '/js/common/metisMenu.min.js'
166
+            ),
167
+            'cdn' => array(
168
+                'no'  => '//cdnjs.cloudflare.com/ajax/libs/metisMenu/2.0.2/metisMenu.js',
169
+                'min' => '//cdnjs.cloudflare.com/ajax/libs/metisMenu/2.0.2/metisMenu.min.js'
170
+            )
171
+        ),
172
+        JS_BOOTBOX => array(
173
+            'no' => array(
174
+                'no'  => '/js/common/bootbox.js',
175
+                'min' => '/js/common/bootbox.min.js'
176
+            ),
177
+            'cdn' => array(
178
+                'no'  => '//cdnjs.cloudflare.com/ajax/libs/bootbox.js/4.3.0/bootbox.js',
179
+                'min' => '//cdnjs.cloudflare.com/ajax/libs/bootbox.js/4.3.0/bootbox.min.js'
180
+            )
181
+        ),
182
+        JS_DATATABLE_ODATA => array(
183
+            'no' => array(
184
+                'no'  => '/js/common/jquery.dataTables.odata.js',
185
+                'min' => '/js/common/jquery.dataTables.odata.js',
186
+            ),
187
+            'cdn' => array(
188
+                'no'  => '/js/common/jquery.dataTables.odata.js',
189
+                'min' => '/js/common/jquery.dataTables.odata.js',
190
+            )
191
+        ),
192
+        JS_CRYPTO_MD5_JS => array(
193
+            'no' => array(
194
+                'no'  => '/js/common/md5.js',
195
+                'min' => '/js/common/md5.js',
196
+            ),
197
+            'cdn' => array(
198
+                'no'  => '//cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/rollups/md5.js',
199
+                'min' => '//cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/rollups/md5.js',
200
+            )
201
+        ),
202
+        JS_JCROP => array(
203
+            'no' => array(
204
+                'no'  => '/js/common/jquery.Jcrop.min.js',
205
+                'min' => '/js/common/jquery.Jcrop.min.js'
206
+            ),
207
+            'cdn' => array(
208
+                'no'  => '//cdnjs.cloudflare.com/ajax/libs/jquery-jcrop/0.9.12/js/jquery.Jcrop.min.js',
209
+                'min' => '//cdnjs.cloudflare.com/ajax/libs/jquery-jcrop/0.9.12/js/jquery.Jcrop.min.js'
210
+            )
211
+        ),
212
+        JS_TYPEAHEAD => array(
213
+            'no' => array(
214
+                'no'  => '/js/common/typeahead.bundle.js',
215
+                'min' => '/js/common/typeahead.bundle.min.js'
216
+            ),
217
+            'cdn' => array(
218
+                'no'  => '//cdnjs.cloudflare.com/ajax/libs/typeahead.js/0.11.1/typeahead.bundle.js',
219
+                'min' => '//cdnjs.cloudflare.com/ajax/libs/typeahead.js/0.11.1/typeahead.bundle.min.js'
220
+            )
221
+        ),
222
+        JS_FLIPSIDE => array(
223
+            'no' => array(
224
+                'no'  => '/js/common/flipside.js',
225
+                'min' => '/js/common/flipside.min.js'
226
+            ),
227
+            'cdn' => array(
228
+                'no'  => '/js/common/flipside.js',
229
+                'min' => '/js/common/flipside.min.js'
230
+            )
231
+        ),
232
+        JS_LOGIN => array(
233
+            'no' => array(
234
+                'no'  => '/js/common/login.js',
235
+                'min' => '/js/common/login.min.js'
236
+            ),
237
+            'cdn' => array(
238
+                'no'  => '/js/common/login.js',
239
+                'min' => '/js/common/login.min.js'
240
+            )
241
+        )
242 242
 );
243 243
 
244 244
 global $cssArray;
245 245
 $cssArray = array(
246 246
     CSS_JQUERY_UI => array(
247 247
         'no' => array(
248
-             'no'  => '/css/common/jquery-ui.css',
249
-             'min' => '/css/common/jquery-ui.min.css'
250
-         ),
251
-         'cdn' => array(
252
-             'no'  => '//ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css',
253
-             'min' => '//ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.min.css'
254
-         )
248
+                'no'  => '/css/common/jquery-ui.css',
249
+                'min' => '/css/common/jquery-ui.min.css'
250
+            ),
251
+            'cdn' => array(
252
+                'no'  => '//ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css',
253
+                'min' => '//ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.min.css'
254
+            )
255 255
     ),
256 256
     CSS_BOOTSTRAP => array(
257
-         'no' => array(
258
-             'no'  => '/css/common/bootstrap.css',
259
-             'min' => '/css/common/bootstrap.min.css'
260
-         ),
261
-         'cdn' => array(
262
-             'no'  => '//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.css',
263
-             'min' => '//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'
264
-         )
257
+            'no' => array(
258
+                'no'  => '/css/common/bootstrap.css',
259
+                'min' => '/css/common/bootstrap.min.css'
260
+            ),
261
+            'cdn' => array(
262
+                'no'  => '//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.css',
263
+                'min' => '//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'
264
+            )
265 265
     ),
266 266
     CSS_BOOTSTRAP_FH => array(
267 267
         'no' => array(
268
-             'no'  => '/css/common/bootstrap-formhelpers.css',
269
-             'min' => '/css/common/bootstrap-formhelpers.min.css'
270
-         ),
271
-         'cdn' => array(
272
-             'no'  => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-formhelpers/2.3.0/css/bootstrap-formhelpers.css',
273
-             'min' => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-formhelpers/2.3.0/css/bootstrap-formhelpers.min.css'
274
-         )
268
+                'no'  => '/css/common/bootstrap-formhelpers.css',
269
+                'min' => '/css/common/bootstrap-formhelpers.min.css'
270
+            ),
271
+            'cdn' => array(
272
+                'no'  => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-formhelpers/2.3.0/css/bootstrap-formhelpers.css',
273
+                'min' => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-formhelpers/2.3.0/css/bootstrap-formhelpers.min.css'
274
+            )
275 275
     ),
276 276
     CSS_BOOTSTRAP_SW => array(
277
-         'no' => array(
278
-             'no'  => '/css/common/bootstrap-switch.css',
279
-             'min' => '/css/common/bootstrap-switch.min.css'
280
-         ),
281
-         'cdn' => array(
282
-             'no'  => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.2/css/bootstrap3/bootstrap-switch.css',
283
-             'min' => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.2/css/bootstrap3/bootstrap-switch.min.css'
284
-         )
277
+            'no' => array(
278
+                'no'  => '/css/common/bootstrap-switch.css',
279
+                'min' => '/css/common/bootstrap-switch.min.css'
280
+            ),
281
+            'cdn' => array(
282
+                'no'  => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.2/css/bootstrap3/bootstrap-switch.css',
283
+                'min' => '//cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.2/css/bootstrap3/bootstrap-switch.min.css'
284
+            )
285 285
     ),
286 286
     CSS_DATATABLE => array(
287 287
         'no' => array(
288
-             'no'  => '/css/common/jquery.dataTables.css',
289
-             'min' => '/css/common/jquery.dataTables.min.css'
290
-         ),
291
-         'cdn' => array(
292
-             'no'  => '//cdn.datatables.net/1.10.7/css/jquery.dataTables.css',
293
-             'min' => '//cdn.datatables.net/1.10.7/css/jquery.dataTables.min.css'
294
-         )
288
+                'no'  => '/css/common/jquery.dataTables.css',
289
+                'min' => '/css/common/jquery.dataTables.min.css'
290
+            ),
291
+            'cdn' => array(
292
+                'no'  => '//cdn.datatables.net/1.10.7/css/jquery.dataTables.css',
293
+                'min' => '//cdn.datatables.net/1.10.7/css/jquery.dataTables.min.css'
294
+            )
295 295
     ),
296 296
     CSS_JCROP => array(
297 297
         'no'  => array(
Please login to merge, or discard this patch.
class.FlipSession.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -204,7 +204,7 @@
 block discarded – undo
204 204
 
205 205
     static function deleteSessionById($sid)
206 206
     {
207
-       return unlink(ini_get('session.save_path').'/sess_'.$sid); 
207
+        return unlink(ini_get('session.save_path').'/sess_'.$sid); 
208 208
     }
209 209
 }
210 210
 /* vim: set tabstop=4 shiftwidth=4 expandtab: */
Please login to merge, or discard this patch.
class.WebPage.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -247,15 +247,15 @@
 block discarded – undo
247 247
      */
248 248
     protected function printIeCompatability($prefix='')
249 249
     {
250
-       //IE 8 doesn't support HTML 5. Install the shim...
251
-       if($this->getBrowserMajorVer() < 9)
252
-       {
253
-           echo $prefix.'<script src="js/html5.js"></script>';
254
-           echo "\n";
255
-       }
256
-       //Tell the browser not to use compatability mode...
257
-       echo $prefix.'<meta http-equiv="X-UA-Compatible" content="IE=edge"/>';
258
-       echo "\n";
250
+        //IE 8 doesn't support HTML 5. Install the shim...
251
+        if($this->getBrowserMajorVer() < 9)
252
+        {
253
+            echo $prefix.'<script src="js/html5.js"></script>';
254
+            echo "\n";
255
+        }
256
+        //Tell the browser not to use compatability mode...
257
+        echo $prefix.'<meta http-equiv="X-UA-Compatible" content="IE=edge"/>';
258
+        echo "\n";
259 259
     }
260 260
 
261 261
     /**
Please login to merge, or discard this patch.