@@ -43,19 +43,19 @@ discard block |
||
43 | 43 | } |
44 | 44 | |
45 | 45 | /* do checks */ |
46 | -require_once $SETTINGS['cpassman_dir'] . '/sources/checks.php'; |
|
46 | +require_once $SETTINGS['cpassman_dir'].'/sources/checks.php'; |
|
47 | 47 | if (checkUser($_SESSION['user_id'], $_SESSION['key'], 'users', $SETTINGS) === false) { |
48 | 48 | $_SESSION['error']['code'] = ERR_NOT_ALLOWED; |
49 | - include $SETTINGS['cpassman_dir'] . '/error.php'; |
|
49 | + include $SETTINGS['cpassman_dir'].'/error.php'; |
|
50 | 50 | exit; |
51 | 51 | } |
52 | 52 | |
53 | -require_once $SETTINGS['cpassman_dir'] . '/sources/main.functions.php'; |
|
53 | +require_once $SETTINGS['cpassman_dir'].'/sources/main.functions.php'; |
|
54 | 54 | // Load superGlobals |
55 | -include_once $SETTINGS['cpassman_dir'] . '/includes/libraries/protect/SuperGlobal/SuperGlobal.php'; |
|
55 | +include_once $SETTINGS['cpassman_dir'].'/includes/libraries/protect/SuperGlobal/SuperGlobal.php'; |
|
56 | 56 | $superGlobal = new protect\SuperGlobal\SuperGlobal(); |
57 | 57 | // Connect to mysql server |
58 | -require_once $SETTINGS['cpassman_dir'] . '/includes/libraries/Database/Meekrodb/db.class.php'; |
|
58 | +require_once $SETTINGS['cpassman_dir'].'/includes/libraries/Database/Meekrodb/db.class.php'; |
|
59 | 59 | if (defined('DB_PASSWD_CLEAR') === false) { |
60 | 60 | define('DB_PASSWD_CLEAR', defuseReturnDecrypted(DB_PASSWD, $SETTINGS)); |
61 | 61 | } |
@@ -72,29 +72,29 @@ discard block |
||
72 | 72 | // If administrator then all roles are shown |
73 | 73 | // else only the Roles the users is associated to. |
74 | 74 | if ((int) $_SESSION['is_admin'] === 1) { |
75 | - $optionsManagedBy .= '<option value="0">' . langHdl('administrators_only') . '</option>'; |
|
75 | + $optionsManagedBy .= '<option value="0">'.langHdl('administrators_only').'</option>'; |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | $rows = DB::query( |
79 | 79 | 'SELECT id, title, creator_id |
80 | - FROM ' . prefixTable('roles_title') . ' |
|
80 | + FROM ' . prefixTable('roles_title').' |
|
81 | 81 | ORDER BY title ASC' |
82 | 82 | ); |
83 | 83 | foreach ($rows as $record) { |
84 | 84 | if ((int) $_SESSION['is_admin'] === 1 || in_array($record['id'], $_SESSION['user_roles']) === true) { |
85 | - $optionsManagedBy .= '<option value="' . $record['id'] . '">' . langHdl('managers_of') . ' ' . addslashes($record['title']) . '</option>'; |
|
85 | + $optionsManagedBy .= '<option value="'.$record['id'].'">'.langHdl('managers_of').' '.addslashes($record['title']).'</option>'; |
|
86 | 86 | } |
87 | 87 | if ( |
88 | 88 | (int) $_SESSION['is_admin'] === 1 |
89 | 89 | || (((int) $superGlobal->get('user_manager', 'SESSION') === 1 || (int) $_SESSION['user_can_manage_all_users'] === 1) |
90 | 90 | && (in_array($record['id'], $userRoles) === true) || (int) $record['creator_id'] === (int) $_SESSION['user_id']) |
91 | 91 | ) { |
92 | - $optionsRoles .= '<option value="' . $record['id'] . '">' . addslashes($record['title']) . '</option>'; |
|
92 | + $optionsRoles .= '<option value="'.$record['id'].'">'.addslashes($record['title']).'</option>'; |
|
93 | 93 | } |
94 | 94 | } |
95 | 95 | |
96 | 96 | //Build tree |
97 | -$tree = new SplClassLoader('Tree\NestedTree', $SETTINGS['cpassman_dir'] . '/includes/libraries'); |
|
97 | +$tree = new SplClassLoader('Tree\NestedTree', $SETTINGS['cpassman_dir'].'/includes/libraries'); |
|
98 | 98 | $tree->register(); |
99 | 99 | $tree = new Tree\NestedTree\NestedTree(prefixTable('nested_tree'), 'id', 'parent_id', 'title'); |
100 | 100 | $treeDesc = $tree->getDescendants(); |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | for ($y = 1; $y < $t->nlevel; ++$y) { |
109 | 109 | $ident .= ' '; |
110 | 110 | } |
111 | - $foldersList .= '<option value="' . $t->id . '">' . $ident . htmlspecialchars($t->title, ENT_COMPAT, 'UTF-8') . '</option>'; |
|
111 | + $foldersList .= '<option value="'.$t->id.'">'.$ident.htmlspecialchars($t->title, ENT_COMPAT, 'UTF-8').'</option>'; |
|
112 | 112 | } |
113 | 113 | } |
114 | 114 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | </button><?php |
146 | 146 | echo isset($SETTINGS['ldap_mode']) === true && (int) $SETTINGS['ldap_mode'] === 1 && (int) $_SESSION['is_admin'] === 1 ? |
147 | 147 | '<button type="button" class="btn btn-primary btn-sm tp-action mr-2" data-action="ldap-sync"> |
148 | - <i class="fas fa-address-card mr-2"></i>' . langHdl('ldap_synchronization') . ' |
|
148 | + <i class="fas fa-address-card mr-2"></i>' . langHdl('ldap_synchronization').' |
|
149 | 149 | </button>' : ''; |
150 | 150 | ?> |
151 | 151 | </h3> |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | <?php |
218 | 218 | foreach (TP_PW_COMPLEXITY as $entry) { |
219 | 219 | echo ' |
220 | - <option value="' . $entry[0] . '">' . addslashes($entry[1]) . '</option>'; |
|
220 | + <option value="' . $entry[0].'">'.addslashes($entry[1]).'</option>'; |
|
221 | 221 | } |
222 | 222 | ?> |
223 | 223 | </select> |
@@ -43,11 +43,11 @@ discard block |
||
43 | 43 | } |
44 | 44 | |
45 | 45 | /* do checks */ |
46 | -require_once $SETTINGS['cpassman_dir'] . '/sources/checks.php'; |
|
46 | +require_once $SETTINGS['cpassman_dir'].'/sources/checks.php'; |
|
47 | 47 | if (checkUser($_SESSION['user_id'], $_SESSION['key'], '2fa', $SETTINGS) === false) { |
48 | 48 | $_SESSION['error']['code'] = ERR_NOT_ALLOWED; |
49 | 49 | //not allowed page |
50 | - include $SETTINGS['cpassman_dir'] . '/error.php'; |
|
50 | + include $SETTINGS['cpassman_dir'].'/error.php'; |
|
51 | 51 | exit; |
52 | 52 | } |
53 | 53 | ?> |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | if (parseInt($(this).data('category')) === parseInt(selectedCategory)) { |
143 | 143 | fields.push({ |
144 | 144 | id: $(this).data('order'), |
145 | - text: '<?php echo langHdl('before') . ' '; ?>' + $(this).find('td:eq(1)').text() |
|
145 | + text: '<?php echo langHdl('before').' '; ?>' + $(this).find('td:eq(1)').text() |
|
146 | 146 | }); |
147 | 147 | } |
148 | 148 | }); |
@@ -546,7 +546,7 @@ discard block |
||
546 | 546 | if ($(this).data('category') === categoryId) { |
547 | 547 | fields.push({ |
548 | 548 | id: $(this).data('order'), |
549 | - text: '<?php echo langHdl('before') . ' '; ?>' + $(this).find('td:eq(1)').text() |
|
549 | + text: '<?php echo langHdl('before').' '; ?>' + $(this).find('td:eq(1)').text() |
|
550 | 550 | }); |
551 | 551 | } |
552 | 552 | }); |
@@ -712,7 +712,7 @@ discard block |
||
712 | 712 | '</tr>'; |
713 | 713 | |
714 | 714 | // Prepare list of categories for Form |
715 | - categoriesList += '<option value="' + categoryId + '"><?php echo langHdl('before') . ' '; ?>' + val.title + '</option>'; |
|
715 | + categoriesList += '<option value="' + categoryId + '"><?php echo langHdl('before').' '; ?>' + val.title + '</option>'; |
|
716 | 716 | |
717 | 717 | positionCategory += 1; |
718 | 718 | } else { |
@@ -43,15 +43,15 @@ |
||
43 | 43 | } |
44 | 44 | |
45 | 45 | /* do checks */ |
46 | -require_once $SETTINGS['cpassman_dir'] . '/sources/checks.php'; |
|
46 | +require_once $SETTINGS['cpassman_dir'].'/sources/checks.php'; |
|
47 | 47 | if (checkUser($_SESSION['user_id'], $_SESSION['key'], 'utilities.renewal', $SETTINGS) === false) { |
48 | 48 | $_SESSION['error']['code'] = ERR_NOT_ALLOWED; |
49 | - include $SETTINGS['cpassman_dir'] . '/error.php'; |
|
49 | + include $SETTINGS['cpassman_dir'].'/error.php'; |
|
50 | 50 | exit; |
51 | 51 | } |
52 | 52 | |
53 | 53 | // Load template |
54 | -require_once $SETTINGS['cpassman_dir'] . '/sources/main.functions.php'; |
|
54 | +require_once $SETTINGS['cpassman_dir'].'/sources/main.functions.php'; |
|
55 | 55 | |
56 | 56 | ?> |
57 | 57 |
@@ -43,11 +43,11 @@ |
||
43 | 43 | } |
44 | 44 | |
45 | 45 | /* do checks */ |
46 | -require_once $SETTINGS['cpassman_dir'] . '/sources/checks.php'; |
|
46 | +require_once $SETTINGS['cpassman_dir'].'/sources/checks.php'; |
|
47 | 47 | if (checkUser($_SESSION['user_id'], $_SESSION['key'], 'api', $SETTINGS) === false) { |
48 | 48 | $_SESSION['error']['code'] = ERR_NOT_ALLOWED; |
49 | 49 | //not allowed page |
50 | - include $SETTINGS['cpassman_dir'] . '/error.php'; |
|
50 | + include $SETTINGS['cpassman_dir'].'/error.php'; |
|
51 | 51 | exit; |
52 | 52 | } |
53 | 53 | ?> |
@@ -43,16 +43,16 @@ discard block |
||
43 | 43 | } |
44 | 44 | |
45 | 45 | /* do checks */ |
46 | -require_once $SETTINGS['cpassman_dir'] . '/sources/checks.php'; |
|
47 | -if (! checkUser($_SESSION['user_id'], $_SESSION['key'], curPage($SETTINGS), $SETTINGS)) { |
|
46 | +require_once $SETTINGS['cpassman_dir'].'/sources/checks.php'; |
|
47 | +if (!checkUser($_SESSION['user_id'], $_SESSION['key'], curPage($SETTINGS), $SETTINGS)) { |
|
48 | 48 | $_SESSION['error']['code'] = ERR_NOT_ALLOWED; |
49 | 49 | //not allowed page |
50 | - include $SETTINGS['cpassman_dir'] . '/error.php'; |
|
50 | + include $SETTINGS['cpassman_dir'].'/error.php'; |
|
51 | 51 | exit; |
52 | 52 | } |
53 | 53 | |
54 | 54 | // Load |
55 | -require_once $SETTINGS['cpassman_dir'] . '/sources/main.functions.php'; |
|
55 | +require_once $SETTINGS['cpassman_dir'].'/sources/main.functions.php'; |
|
56 | 56 | |
57 | 57 | ?> |
58 | 58 | |
@@ -89,12 +89,12 @@ discard block |
||
89 | 89 | if (empty($fav) === false) { |
90 | 90 | $data = DB::queryFirstRow( |
91 | 91 | 'SELECT i.label, i.description, i.id, i.id_tree, t.title |
92 | - FROM ' . prefixTable('items') . ' as i |
|
93 | - INNER JOIN ' . prefixTable('nested_tree') . ' as t ON (t.id = i.id_tree) |
|
92 | + FROM ' . prefixTable('items').' as i |
|
93 | + INNER JOIN ' . prefixTable('nested_tree').' as t ON (t.id = i.id_tree) |
|
94 | 94 | WHERE i.id = %i', |
95 | 95 | $fav |
96 | 96 | ); |
97 | - if (! empty($data['label'])) { |
|
97 | + if (!empty($data['label'])) { |
|
98 | 98 | ?> |
99 | 99 | <tr> |
100 | 100 | <td> |
@@ -43,11 +43,11 @@ discard block |
||
43 | 43 | } |
44 | 44 | |
45 | 45 | /* do checks */ |
46 | -require_once $SETTINGS['cpassman_dir'] . '/sources/checks.php'; |
|
47 | -if (! checkUser($_SESSION['user_id'], $_SESSION['key'], curPage($SETTINGS), $SETTINGS)) { |
|
46 | +require_once $SETTINGS['cpassman_dir'].'/sources/checks.php'; |
|
47 | +if (!checkUser($_SESSION['user_id'], $_SESSION['key'], curPage($SETTINGS), $SETTINGS)) { |
|
48 | 48 | $_SESSION['error']['code'] = ERR_NOT_ALLOWED; |
49 | 49 | //not allowed page |
50 | - include $SETTINGS['cpassman_dir'] . '/error.php'; |
|
50 | + include $SETTINGS['cpassman_dir'].'/error.php'; |
|
51 | 51 | exit; |
52 | 52 | } |
53 | 53 | |
@@ -2261,7 +2261,7 @@ discard block |
||
2261 | 2261 | container: 'form-item-upload-zone', |
2262 | 2262 | max_file_size: '<?php |
2263 | 2263 | if (strrpos($SETTINGS['upload_maxfilesize'], 'mb') === false) { |
2264 | - echo $SETTINGS['upload_maxfilesize'] . 'mb'; |
|
2264 | + echo $SETTINGS['upload_maxfilesize'].'mb'; |
|
2265 | 2265 | } else { |
2266 | 2266 | echo $SETTINGS['upload_maxfilesize']; |
2267 | 2267 | } |
@@ -43,11 +43,11 @@ discard block |
||
43 | 43 | } |
44 | 44 | |
45 | 45 | /* do checks */ |
46 | -require_once $SETTINGS['cpassman_dir'] . '/sources/checks.php'; |
|
46 | +require_once $SETTINGS['cpassman_dir'].'/sources/checks.php'; |
|
47 | 47 | if (checkUser($_SESSION['user_id'], $_SESSION['key'], '2fa', $SETTINGS) === false) { |
48 | 48 | $_SESSION['error']['code'] = ERR_NOT_ALLOWED; |
49 | 49 | //not allowed page |
50 | - include $SETTINGS['cpassman_dir'] . '/error.php'; |
|
50 | + include $SETTINGS['cpassman_dir'].'/error.php'; |
|
51 | 51 | exit; |
52 | 52 | } |
53 | 53 | ?> |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | // error |
117 | 117 | toastr.remove(); |
118 | 118 | toastr.error( |
119 | - '<?php echo langHdl('server_answer_error') . '<br />' . langHdl('server_returned_data') . ':<br />'; ?>' + data.error, |
|
119 | + '<?php echo langHdl('server_answer_error').'<br />'.langHdl('server_returned_data').':<br />'; ?>' + data.error, |
|
120 | 120 | '<?php echo langHdl('error'); ?>', { |
121 | 121 | timeOut: 5000, |
122 | 122 | progressBar: true |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | // error |
183 | 183 | toastr.remove(); |
184 | 184 | toastr.error( |
185 | - '<?php echo langHdl('server_answer_error') . '<br />' . langHdl('server_returned_data') . ':<br />'; ?>' + data.error, |
|
185 | + '<?php echo langHdl('server_answer_error').'<br />'.langHdl('server_returned_data').':<br />'; ?>' + data.error, |
|
186 | 186 | '<?php echo langHdl('error'); ?>', { |
187 | 187 | timeOut: 5000, |
188 | 188 | progressBar: true |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | // error |
235 | 235 | toastr.remove(); |
236 | 236 | toastr.error( |
237 | - '<?php echo langHdl('server_answer_error') . '<br />' . langHdl('server_returned_data') . ':<br />'; ?>' + data.error, |
|
237 | + '<?php echo langHdl('server_answer_error').'<br />'.langHdl('server_returned_data').':<br />'; ?>' + data.error, |
|
238 | 238 | '<?php echo langHdl('error'); ?>', { |
239 | 239 | timeOut: 5000, |
240 | 240 | progressBar: true |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | // error |
284 | 284 | toastr.remove(); |
285 | 285 | toastr.error( |
286 | - '<?php echo langHdl('server_answer_error') . '<br />' . langHdl('server_returned_data') . ':<br />'; ?>' + data.error, |
|
286 | + '<?php echo langHdl('server_answer_error').'<br />'.langHdl('server_returned_data').':<br />'; ?>' + data.error, |
|
287 | 287 | '<?php echo langHdl('error'); ?>', { |
288 | 288 | timeOut: 5000, |
289 | 289 | progressBar: true |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | if (data.nextAction === 'done') { |
297 | 297 | $('#change-sk-progress') |
298 | 298 | .html('<i class="fas fa-info mr-2"></i>' + |
299 | - '<?php echo langHdl('alert_message_done') . ' ' . langHdl('number_of_items_treated'); ?> : ' + |
|
299 | + '<?php echo langHdl('alert_message_done').' '.langHdl('number_of_items_treated'); ?> : ' + |
|
300 | 300 | $('#changeMainSaltKey_itemsCountTotal').val() + |
301 | 301 | '<p><?php echo langHdl('check_data_after_reencryption'); ?><p>' + |
302 | 302 | '<div class="mt-2 pointer"><a href="#" onclick="encryption_show_revert()">' + |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | // error |
328 | 328 | toastr.remove(); |
329 | 329 | toastr.error( |
330 | - '<?php echo langHdl('server_answer_error') . '<br />' . langHdl('server_returned_data') . ':<br />'; ?>' + data.error, |
|
330 | + '<?php echo langHdl('server_answer_error').'<br />'.langHdl('server_returned_data').':<br />'; ?>' + data.error, |
|
331 | 331 | '<?php echo langHdl('error'); ?>', { |
332 | 332 | timeOut: 5000, |
333 | 333 | progressBar: true |
@@ -389,7 +389,7 @@ discard block |
||
389 | 389 | // error |
390 | 390 | toastr.remove(); |
391 | 391 | toastr.error( |
392 | - '<?php echo langHdl('server_answer_error') . '<br />' . langHdl('server_returned_data') . ':<br />'; ?>' + data.error, |
|
392 | + '<?php echo langHdl('server_answer_error').'<br />'.langHdl('server_returned_data').':<br />'; ?>' + data.error, |
|
393 | 393 | '<?php echo langHdl('error'); ?>', { |
394 | 394 | timeOut: 5000, |
395 | 395 | progressBar: true |
@@ -43,15 +43,15 @@ discard block |
||
43 | 43 | } |
44 | 44 | |
45 | 45 | /* do checks */ |
46 | -require_once $SETTINGS['cpassman_dir'] . '/sources/checks.php'; |
|
46 | +require_once $SETTINGS['cpassman_dir'].'/sources/checks.php'; |
|
47 | 47 | if (checkUser($_SESSION['user_id'], $_SESSION['key'], 'api', $SETTINGS) === false) { |
48 | 48 | $_SESSION['error']['code'] = ERR_NOT_ALLOWED; |
49 | - include $SETTINGS['cpassman_dir'] . '/error.php'; |
|
49 | + include $SETTINGS['cpassman_dir'].'/error.php'; |
|
50 | 50 | exit; |
51 | 51 | } |
52 | 52 | |
53 | 53 | // Load template |
54 | -require_once $SETTINGS['cpassman_dir'] . '/sources/main.functions.php'; |
|
54 | +require_once $SETTINGS['cpassman_dir'].'/sources/main.functions.php'; |
|
55 | 55 | |
56 | 56 | ?> |
57 | 57 | |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | <div class="mt-4"> |
111 | 111 | <?php |
112 | 112 | $rows = DB::query( |
113 | - 'SELECT id, label, value FROM ' . prefixTable('api') . ' |
|
113 | + 'SELECT id, label, value FROM '.prefixTable('api').' |
|
114 | 114 | WHERE type = %s |
115 | 115 | ORDER BY timestamp ASC', |
116 | 116 | 'key' |
@@ -128,10 +128,10 @@ discard block |
||
128 | 128 | <?php |
129 | 129 | foreach ($rows as $record) { |
130 | 130 | echo ' |
131 | - <tr data-id="' . $record['id'] . '"> |
|
132 | - <td width="50px"><i class="fa fa-trash infotip pointer delete-api-key" title="' . langHdl('del_button') . '"></i></td> |
|
133 | - <td><span class="edit-api-key pointer">' . $record['label'] . '</span></td> |
|
134 | - <td>' . $record['value'] . '</td> |
|
131 | + <tr data-id="' . $record['id'].'"> |
|
132 | + <td width="50px"><i class="fa fa-trash infotip pointer delete-api-key" title="' . langHdl('del_button').'"></i></td> |
|
133 | + <td><span class="edit-api-key pointer">' . $record['label'].'</span></td> |
|
134 | + <td>' . $record['value'].'</td> |
|
135 | 135 | </tr>'; |
136 | 136 | } ?> |
137 | 137 | </tbody> |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | <div class="col-12 mt-4" id="table-api-ip"> |
167 | 167 | <?php |
168 | 168 | $rows = DB::query( |
169 | - 'SELECT id, label, value FROM ' . prefixTable('api') . ' |
|
169 | + 'SELECT id, label, value FROM '.prefixTable('api').' |
|
170 | 170 | WHERE type = %s |
171 | 171 | ORDER BY timestamp ASC', |
172 | 172 | 'ip' |
@@ -184,10 +184,10 @@ discard block |
||
184 | 184 | <?php |
185 | 185 | foreach ($rows as $record) { |
186 | 186 | echo ' |
187 | - <tr data-id="' . $record['id'] . '"> |
|
188 | - <td width="50px"><i class="fa fa-trash infotip pointer delete-api-ip" title="' . langHdl('del_button') . '"></i></td> |
|
189 | - <td><span class="edit-api-ip pointer" data-field="label">' . $record['label'] . '</span></td> |
|
190 | - <td><span class="edit-api-ip pointer" data-field="value">' . $record['value'] . '</span></td> |
|
187 | + <tr data-id="' . $record['id'].'"> |
|
188 | + <td width="50px"><i class="fa fa-trash infotip pointer delete-api-ip" title="' . langHdl('del_button').'"></i></td> |
|
189 | + <td><span class="edit-api-ip pointer" data-field="label">' . $record['label'].'</span></td> |
|
190 | + <td><span class="edit-api-ip pointer" data-field="value">' . $record['value'].'</span></td> |
|
191 | 191 | </tr>'; |
192 | 192 | } ?> |
193 | 193 | </tbody> |
@@ -43,10 +43,10 @@ discard block |
||
43 | 43 | } |
44 | 44 | |
45 | 45 | /* do checks */ |
46 | -require_once $SETTINGS['cpassman_dir'] . '/sources/checks.php'; |
|
46 | +require_once $SETTINGS['cpassman_dir'].'/sources/checks.php'; |
|
47 | 47 | if (checkUser($_SESSION['user_id'], $_SESSION['key'], 'statistics', $SETTINGS) === false) { |
48 | 48 | $_SESSION['error']['code'] = ERR_NOT_ALLOWED; |
49 | - include $SETTINGS['cpassman_dir'] . '/error.php'; |
|
49 | + include $SETTINGS['cpassman_dir'].'/error.php'; |
|
50 | 50 | exit; |
51 | 51 | } |
52 | 52 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | $statistics_items = array_filter(explode(';', $SETTINGS['send_statistics_items'])); |
57 | 57 | } |
58 | 58 | |
59 | -require_once $SETTINGS['cpassman_dir'] . '/sources/main.functions.php'; |
|
59 | +require_once $SETTINGS['cpassman_dir'].'/sources/main.functions.php'; |
|
60 | 60 | |
61 | 61 | ?> |
62 | 62 |