@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | if ($checkUserAccess->checkSession() === false || $checkUserAccess->userAccessPage('items') === false) { |
| 73 | 73 | // Not allowed page |
| 74 | 74 | $session->set('system-error_code', ERR_NOT_ALLOWED); |
| 75 | - include $SETTINGS['cpassman_dir'] . '/error.php'; |
|
| 75 | + include $SETTINGS['cpassman_dir'].'/error.php'; |
|
| 76 | 76 | exit; |
| 77 | 77 | } |
| 78 | 78 | |
@@ -1030,7 +1030,7 @@ discard block |
||
| 1030 | 1030 | // |
| 1031 | 1031 | } else if ($(this).data('item-action') === 'link') { |
| 1032 | 1032 | // Add link to clipboard. |
| 1033 | - navigator.clipboard.writeText("<?php echo $SETTINGS['cpassman_url'];?>/index.php?page=items&group="+store.get('teampassItem').folderId+"&id="+store.get('teampassItem').id); |
|
| 1033 | + navigator.clipboard.writeText("<?php echo $SETTINGS['cpassman_url']; ?>/index.php?page=items&group="+store.get('teampassItem').folderId+"&id="+store.get('teampassItem').id); |
|
| 1034 | 1034 | |
| 1035 | 1035 | // Display message. |
| 1036 | 1036 | toastr.remove(); |
@@ -2649,7 +2649,7 @@ discard block |
||
| 2649 | 2649 | progress: "#form-item-password-strength", |
| 2650 | 2650 | score: "#form-item-password-strength" |
| 2651 | 2651 | }, |
| 2652 | - scores: [<?php echo TP_PW_STRENGTH_1;?>, <?php echo TP_PW_STRENGTH_2;?>, <?php echo TP_PW_STRENGTH_3;?>, <?php echo TP_PW_STRENGTH_4;?>, <?php echo TP_PW_STRENGTH_5;?>], |
|
| 2652 | + scores: [<?php echo TP_PW_STRENGTH_1; ?>, <?php echo TP_PW_STRENGTH_2; ?>, <?php echo TP_PW_STRENGTH_3; ?>, <?php echo TP_PW_STRENGTH_4; ?>, <?php echo TP_PW_STRENGTH_5; ?>], |
|
| 2653 | 2653 | }, |
| 2654 | 2654 | i18n : { |
| 2655 | 2655 | t: function (key) { |
@@ -2676,7 +2676,7 @@ discard block |
||
| 2676 | 2676 | <?php |
| 2677 | 2677 | $max_file_size = ''; |
| 2678 | 2678 | if (strrpos($SETTINGS['upload_maxfilesize'], 'mb') === false) { |
| 2679 | - $max_file_size = $SETTINGS['upload_maxfilesize'] . 'mb'; |
|
| 2679 | + $max_file_size = $SETTINGS['upload_maxfilesize'].'mb'; |
|
| 2680 | 2680 | } else { |
| 2681 | 2681 | $max_file_size = $SETTINGS['upload_maxfilesize']; |
| 2682 | 2682 | } |
@@ -4723,7 +4723,7 @@ discard block |
||
| 4723 | 4723 | |
| 4724 | 4724 | // Show passwords inputs and form |
| 4725 | 4725 | $('#dialog-ldap-user-change-password-info') |
| 4726 | - .html('<i class="icon fa-solid fa-info mr-2"></i><?php echo $lang->get('ldap_user_has_changed_his_password');?>') |
|
| 4726 | + .html('<i class="icon fa-solid fa-info mr-2"></i><?php echo $lang->get('ldap_user_has_changed_his_password'); ?>') |
|
| 4727 | 4727 | .removeClass('hidden'); |
| 4728 | 4728 | $('#dialog-ldap-user-change-password').removeClass('hidden'); |
| 4729 | 4729 | } else if (data.error_type !== 'undefined') { |
@@ -4742,7 +4742,7 @@ discard block |
||
| 4742 | 4742 | |
| 4743 | 4743 | // Show passwords inputs and form |
| 4744 | 4744 | $('#dialog-ldap-user-change-password-info') |
| 4745 | - .html('<i class="icon fa-solid fa-info mr-2"></i><?php echo $lang->get('ldap_user_has_changed_his_password');?>') |
|
| 4745 | + .html('<i class="icon fa-solid fa-info mr-2"></i><?php echo $lang->get('ldap_user_has_changed_his_password'); ?>') |
|
| 4746 | 4746 | .removeClass('hidden'); |
| 4747 | 4747 | $('#dialog-ldap-user-change-password').removeClass('hidden'); |
| 4748 | 4748 | }); |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | //get through all users with enabled personnal folder. |
| 80 | 80 | $users = DB::query( |
| 81 | 81 | 'SELECT id, login, email |
| 82 | - FROM ' . prefixTable('users') . ' |
|
| 82 | + FROM ' . prefixTable('users').' |
|
| 83 | 83 | WHERE id NOT IN ('.OTV_USER_ID.', '.TP_USER_ID.', '.SSH_USER_ID.', '.API_USER_ID.') |
| 84 | 84 | AND personal_folder = 1 |
| 85 | 85 | ORDER BY login ASC' |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | //if folder doesn't exist then create it |
| 89 | 89 | $data = DB::queryfirstrow( |
| 90 | 90 | 'SELECT id |
| 91 | - FROM ' . prefixTable('nested_tree') . ' |
|
| 91 | + FROM ' . prefixTable('nested_tree').' |
|
| 92 | 92 | WHERE title = %s AND parent_id = %i', |
| 93 | 93 | $user['id'], |
| 94 | 94 | 0 |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | if ($checkUserAccess->checkSession() === false || $checkUserAccess->userAccessPage('admin') === false) { |
| 69 | 69 | // Not allowed page |
| 70 | 70 | $session->set('system-error_code', ERR_NOT_ALLOWED); |
| 71 | - include $SETTINGS['cpassman_dir'] . '/error.php'; |
|
| 71 | + include $SETTINGS['cpassman_dir'].'/error.php'; |
|
| 72 | 72 | exit; |
| 73 | 73 | } |
| 74 | 74 | |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | // error |
| 150 | 150 | toastr.remove(); |
| 151 | 151 | toastr.error( |
| 152 | - '<?php echo $lang->get('server_answer_error') . '<br />' . $lang->get('server_returned_data') . ':<br />'; ?>' + data.error, |
|
| 152 | + '<?php echo $lang->get('server_answer_error').'<br />'.$lang->get('server_returned_data').':<br />'; ?>' + data.error, |
|
| 153 | 153 | '', { |
| 154 | 154 | closeButton: true, |
| 155 | 155 | positionClass: 'toast-bottom-right' |
@@ -223,7 +223,7 @@ discard block |
||
| 223 | 223 | // error |
| 224 | 224 | toastr.remove(); |
| 225 | 225 | toastr.error( |
| 226 | - '<?php echo $lang->get('server_answer_error') . '<br />' . $lang->get('server_returned_data') . ':<br />'; ?>' + data.error, |
|
| 226 | + '<?php echo $lang->get('server_answer_error').'<br />'.$lang->get('server_returned_data').':<br />'; ?>' + data.error, |
|
| 227 | 227 | '', { |
| 228 | 228 | closeButton: true, |
| 229 | 229 | positionClass: 'toast-bottom-right' |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | // error |
| 272 | 272 | toastr.remove(); |
| 273 | 273 | toastr.error( |
| 274 | - '<?php echo $lang->get('server_answer_error') . '<br />' . $lang->get('server_returned_data') . ':<br />'; ?>' + data.error, |
|
| 274 | + '<?php echo $lang->get('server_answer_error').'<br />'.$lang->get('server_returned_data').':<br />'; ?>' + data.error, |
|
| 275 | 275 | '', { |
| 276 | 276 | closeButton: true, |
| 277 | 277 | positionClass: 'toast-bottom-right' |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | if ($checkUserAccess->checkSession() === false || $checkUserAccess->userAccessPage('tasks') === false) { |
| 74 | 74 | // Not allowed page |
| 75 | 75 | $session->set('system-error_code', ERR_NOT_ALLOWED); |
| 76 | - include $SETTINGS['cpassman_dir'] . '/error.php'; |
|
| 76 | + include $SETTINGS['cpassman_dir'].'/error.php'; |
|
| 77 | 77 | exit; |
| 78 | 78 | } |
| 79 | 79 | ?> |
@@ -370,7 +370,7 @@ discard block |
||
| 370 | 370 | // error |
| 371 | 371 | toastr.remove(); |
| 372 | 372 | toastr.error( |
| 373 | - '<?php echo $lang->get('server_answer_error') . '<br />' . $lang->get('server_returned_data') . ':<br />'; ?>' + data.error, |
|
| 373 | + '<?php echo $lang->get('server_answer_error').'<br />'.$lang->get('server_returned_data').':<br />'; ?>' + data.error, |
|
| 374 | 374 | '', { |
| 375 | 375 | closeButton: true, |
| 376 | 376 | positionClass: 'toast-bottom-right' |
@@ -393,11 +393,11 @@ discard block |
||
| 393 | 393 | $('#'+field+'_parameter_value').val(frequency === null ? '' : frequency + ';' +value,); |
| 394 | 394 | param = value.split(';'); |
| 395 | 395 | if (param.length === 1) { |
| 396 | - txt = ' <?php echo $lang->get('at');?> ' + param[0]; |
|
| 396 | + txt = ' <?php echo $lang->get('at'); ?> ' + param[0]; |
|
| 397 | 397 | } else { |
| 398 | - txt = ' <?php echo $lang->get('day');?> ' + param[1] + ' <?php echo $lang->get('at');?> ' + param[0]; |
|
| 398 | + txt = ' <?php echo $lang->get('day'); ?> ' + param[1] + ' <?php echo $lang->get('at'); ?> ' + param[0]; |
|
| 399 | 399 | } |
| 400 | - $('#'+field+'_parameter').val(frequency === null ? '<?php echo $lang->get('not_defined');?>' : (data.message + txt)); |
|
| 400 | + $('#'+field+'_parameter').val(frequency === null ? '<?php echo $lang->get('not_defined'); ?>' : (data.message + txt)); |
|
| 401 | 401 | $("#task-define-modal").modal('hide'); |
| 402 | 402 | $('#task-define-modal-type, #task-define-modal-parameter-hourly-value, #task-define-modal-parameter-daily-value, #task-define-modal-frequency').val(''); |
| 403 | 403 | } |
@@ -503,7 +503,7 @@ discard block |
||
| 503 | 503 | // error |
| 504 | 504 | toastr.remove(); |
| 505 | 505 | toastr.error( |
| 506 | - '<?php echo $lang->get('server_answer_error') . '<br />' . $lang->get('server_returned_data') . ':<br />'; ?>' + data.error, |
|
| 506 | + '<?php echo $lang->get('server_answer_error').'<br />'.$lang->get('server_returned_data').':<br />'; ?>' + data.error, |
|
| 507 | 507 | '', { |
| 508 | 508 | closeButton: true, |
| 509 | 509 | positionClass: 'toast-bottom-right' |
@@ -564,7 +564,7 @@ discard block |
||
| 564 | 564 | // error |
| 565 | 565 | toastr.remove(); |
| 566 | 566 | toastr.error( |
| 567 | - '<?php echo $lang->get('server_answer_error') . '<br />' . $lang->get('server_returned_data') . ':<br />'; ?>' + data.error, |
|
| 567 | + '<?php echo $lang->get('server_answer_error').'<br />'.$lang->get('server_returned_data').':<br />'; ?>' + data.error, |
|
| 568 | 568 | '', { |
| 569 | 569 | closeButton: true, |
| 570 | 570 | positionClass: 'toast-bottom-right' |
@@ -71,7 +71,7 @@ |
||
| 71 | 71 | if ($checkUserAccess->checkSession() === false || $checkUserAccess->userAccessPage('oauth') === false) { |
| 72 | 72 | // Not allowed page |
| 73 | 73 | $session->set('system-error_code', ERR_NOT_ALLOWED); |
| 74 | - include $SETTINGS['cpassman_dir'] . '/error.php'; |
|
| 74 | + include $SETTINGS['cpassman_dir'].'/error.php'; |
|
| 75 | 75 | exit; |
| 76 | 76 | } |
| 77 | 77 | |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | $emailService = new EmailService(); |
| 71 | 71 | $rows = DB::query( |
| 72 | 72 | 'SELECT * |
| 73 | - FROM ' . prefixTable('background_tasks') . ' |
|
| 73 | + FROM ' . prefixTable('background_tasks').' |
|
| 74 | 74 | WHERE is_in_progress = %i AND process_type = %s |
| 75 | 75 | ORDER BY increment_id ASC LIMIT 0,10', |
| 76 | 76 | 0, |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | |
| 139 | 139 | //if ((int) $SETTINGS['enable_backlog_mail'] === 1) { |
| 140 | 140 | $row = DB::queryFirstRow( |
| 141 | - 'SELECT valeur FROM ' . prefixTable('misc') . ' WHERE type = %s AND intitule = %s', |
|
| 141 | + 'SELECT valeur FROM '.prefixTable('misc').' WHERE type = %s AND intitule = %s', |
|
| 142 | 142 | 'cron', |
| 143 | 143 | 'sending_emails' |
| 144 | 144 | ); |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | if ((int) (time() - $row['valeur']) >= 300 || (int) $row['valeur'] === 0) { |
| 147 | 147 | $rows = DB::query( |
| 148 | 148 | 'SELECT * |
| 149 | - FROM ' . prefixTable('emails') . |
|
| 149 | + FROM ' . prefixTable('emails'). |
|
| 150 | 150 | ' WHERE status != %s', |
| 151 | 151 | 'sent' |
| 152 | 152 | ); |
@@ -58,7 +58,9 @@ |
||
| 58 | 58 | $get['state'] = filter_var($_GET['state'], FILTER_SANITIZE_SPECIAL_CHARS); |
| 59 | 59 | $get['session_state'] = filter_var($_GET['session_state'], FILTER_SANITIZE_SPECIAL_CHARS); |
| 60 | 60 | |
| 61 | - if (WIP === true) error_log('---- OAUTH2 START ----'); |
|
| 61 | + if (WIP === true) { |
|
| 62 | + error_log('---- OAUTH2 START ----'); |
|
| 63 | + } |
|
| 62 | 64 | |
| 63 | 65 | // Création d'une instance du contrôleur |
| 64 | 66 | $OAuth2 = new OAuth2Controller($SETTINGS); |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | $postType = $request->query->get('post_type', ''); |
| 48 | 48 | $postType = filter_var($postType, FILTER_SANITIZE_SPECIAL_CHARS); |
| 49 | 49 | $get['post_type'] = $postType; |
| 50 | -if (isset($SETTINGS['duo']) === true && (int) $SETTINGS['duo'] === 1 && $get['post_type'] === 'duo' ) { |
|
| 50 | +if (isset($SETTINGS['duo']) === true && (int) $SETTINGS['duo'] === 1 && $get['post_type'] === 'duo') { |
|
| 51 | 51 | $get['duo_state'] = $request->query->get('state'); |
| 52 | 52 | $get['duo_code'] = $request->query->get('duo_code'); |
| 53 | 53 | } |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | exit; |
| 78 | 78 | } else { |
| 79 | 79 | // Gérer les erreurs |
| 80 | - echo 'Erreur lors de la récupération des informations utilisateur : ' . htmlspecialchars($userInfo['message'], ENT_QUOTES, 'UTF-8'); |
|
| 80 | + echo 'Erreur lors de la récupération des informations utilisateur : '.htmlspecialchars($userInfo['message'], ENT_QUOTES, 'UTF-8'); |
|
| 81 | 81 | }; |
| 82 | 82 | } |
| 83 | 83 | |
@@ -100,8 +100,7 @@ discard block |
||
| 100 | 100 | <div class="login-box"> |
| 101 | 101 | <div class="login-logo"><div style="margin:30px;">', |
| 102 | 102 | isset($SETTINGS['custom_logo']) === true && empty($SETTINGS['custom_logo']) === false ? |
| 103 | - '<img src="' . (string) $SETTINGS['custom_logo'] . '" alt="" style="text-align:center; max-width:100px;" />' : |
|
| 104 | - '<img src="includes/images/teampass-logo2-login.png" alt="Teampass Logo">', |
|
| 103 | + '<img src="'.(string) $SETTINGS['custom_logo'].'" alt="" style="text-align:center; max-width:100px;" />' : '<img src="includes/images/teampass-logo2-login.png" alt="Teampass Logo">', |
|
| 105 | 104 | ' |
| 106 | 105 | </div> |
| 107 | 106 | <div style="font-weight:bold;"> |
@@ -121,14 +120,14 @@ discard block |
||
| 121 | 120 | |
| 122 | 121 | <div class="card-body login-card-body1"> |
| 123 | 122 | <div class="input-group has-feedback mb-2"> |
| 124 | - <div class="input-group-prepend infotip" title="' . $lang->get('login') . '"> |
|
| 123 | + <div class="input-group-prepend infotip" title="' . $lang->get('login').'"> |
|
| 125 | 124 | <span class="input-group-text"><i class="fa-solid fa-user fa-fw"></i></span> |
| 126 | 125 | </div>'; |
| 127 | 126 | if ( |
| 128 | 127 | isset($SETTINGS['enable_http_request_login']) === true |
| 129 | 128 | && (int) $SETTINGS['enable_http_request_login'] === 1 |
| 130 | 129 | && $request->getUser() !== null |
| 131 | - && ! (isset($SETTINGS['maintenance_mode']) === true |
|
| 130 | + && !(isset($SETTINGS['maintenance_mode']) === true |
|
| 132 | 131 | && (int) $SETTINGS['maintenance_mode'] === 1) |
| 133 | 132 | ) { |
| 134 | 133 | if (strpos($request->getUser(), '@') !== false) { |
@@ -142,42 +141,42 @@ discard block |
||
| 142 | 141 | <input type="text" id="login" class="form-control" placeholder="', filter_var($username, FILTER_SANITIZE_FULL_SPECIAL_CHARS), '" readonly>'; |
| 143 | 142 | } else { |
| 144 | 143 | echo ' |
| 145 | - <input type="text" id="login" class="form-control" placeholder="' . $lang->get('index_login') . '" value="'.(null !== $session->get('user-login') && empty($session->get('user-login')) === false ? filter_var($session->get('user-login'), FILTER_SANITIZE_FULL_SPECIAL_CHARS) : '').'">'; |
|
| 144 | + <input type="text" id="login" class="form-control" placeholder="' . $lang->get('index_login').'" value="'.(null !== $session->get('user-login') && empty($session->get('user-login')) === false ? filter_var($session->get('user-login'), FILTER_SANITIZE_FULL_SPECIAL_CHARS) : '').'">'; |
|
| 146 | 145 | } |
| 147 | 146 | |
| 148 | 147 | echo ' |
| 149 | 148 | </div>'; |
| 150 | -if (! (isset($SETTINGS['enable_http_request_login']) === true |
|
| 149 | +if (!(isset($SETTINGS['enable_http_request_login']) === true |
|
| 151 | 150 | && (int) $SETTINGS['enable_http_request_login'] === 1 |
| 152 | 151 | && $request->getUser() !== null |
| 153 | - && ! (isset($SETTINGS['maintenance_mode']) === true |
|
| 152 | + && !(isset($SETTINGS['maintenance_mode']) === true |
|
| 154 | 153 | && (int) $SETTINGS['maintenance_mode'] === 1))) { |
| 155 | 154 | echo ' |
| 156 | 155 | <div class="input-group has-feedback mb-2"> |
| 157 | - <div class="input-group-prepend infotip" title="' . $lang->get('password') . '"> |
|
| 156 | + <div class="input-group-prepend infotip" title="' . $lang->get('password').'"> |
|
| 158 | 157 | <span class="input-group-text"><i class="fa-solid fa-lock fa-fw"></i></span> |
| 159 | 158 | </div> |
| 160 | - <input type="password" id="pw" class="form-control submit-button" placeholder="' . $lang->get('index_password') . '"> |
|
| 159 | + <input type="password" id="pw" class="form-control submit-button" placeholder="' . $lang->get('index_password').'"> |
|
| 161 | 160 | </div>'; |
| 162 | 161 | } |
| 163 | 162 | |
| 164 | 163 | echo ' |
| 165 | 164 | <div class="input-group has-feedback mb-2"> |
| 166 | - <div class="input-group-prepend infotip" title="' . $lang->get('session_expiration_in_minutes') . '"> |
|
| 165 | + <div class="input-group-prepend infotip" title="' . $lang->get('session_expiration_in_minutes').'"> |
|
| 167 | 166 | <span class="input-group-text"><i class="fa-solid fa-clock fa-fw"></i></span> |
| 168 | 167 | </div> |
| 169 | 168 | <input type="text" id="session_duration" class="form-control submit-button" |
| 170 | - placeholder="' . $lang->get('index_session_duration') .' (' . $lang->get('minutes') . ')" |
|
| 169 | + placeholder="' . $lang->get('index_session_duration').' ('.$lang->get('minutes').')" |
|
| 171 | 170 | value="', isset($SETTINGS['default_session_expiration_time']) === true ? $SETTINGS['default_session_expiration_time'] : '', '"> |
| 172 | 171 | </div>'; |
| 173 | 172 | // 2FA auth selector |
| 174 | 173 | $mfaHtmlPart = ' |
| 175 | - <input type="hidden" id="2fa_user_selection" value="'.htmlspecialchars((isset($get['post_type']) === true && $get['post_type'] === 'duo') ? 'duo' : ''). '"> |
|
| 176 | - <input type="hidden" id="duo_code" value="'.htmlspecialchars(isset($get['duo_code']) === true && is_null($get['duo_code']) === false ? $get['duo_code'] : ''). '"> |
|
| 177 | - <input type="hidden" id="duo_state" value="'.htmlspecialchars(isset($get['duo_state']) === true && is_null($get['duo_state']) === false ? $get['duo_state'] : ''). '"> |
|
| 174 | + <input type="hidden" id="2fa_user_selection" value="'.htmlspecialchars((isset($get['post_type']) === true && $get['post_type'] === 'duo') ? 'duo' : '').'"> |
|
| 175 | + <input type="hidden" id="duo_code" value="'.htmlspecialchars(isset($get['duo_code']) === true && is_null($get['duo_code']) === false ? $get['duo_code'] : '').'"> |
|
| 176 | + <input type="hidden" id="duo_state" value="'.htmlspecialchars(isset($get['duo_state']) === true && is_null($get['duo_state']) === false ? $get['duo_state'] : '').'"> |
|
| 178 | 177 | <div class="row mb-3 hidden" id="2fa_methods_selector"> |
| 179 | 178 | <div class="col-12"> |
| 180 | - <h8 class="login-box-msg">' . $lang->get('2fa_authentication_selector') . '</h8> |
|
| 179 | + <h8 class="login-box-msg">' . $lang->get('2fa_authentication_selector').'</h8> |
|
| 181 | 180 | <div class="2fa-methods text-center mt-2">'. |
| 182 | 181 | (isset($SETTINGS['google_authentication']) === true && (int) $SETTINGS['google_authentication'] === 1 ? |
| 183 | 182 | ' |
@@ -210,14 +209,14 @@ discard block |
||
| 210 | 209 | echo ' |
| 211 | 210 | <div id="div-2fa-google" class="mb-3 div-2fa-method hidden"> |
| 212 | 211 | <div class="input-group has-feedback mb-2"> |
| 213 | - <div class="input-group-prepend infotip" title="' . $lang->get('mfa_unique_code') . '"> |
|
| 212 | + <div class="input-group-prepend infotip" title="' . $lang->get('mfa_unique_code').'"> |
|
| 214 | 213 | <span class="input-group-text"><i class="fa-solid fa-key fa-fw"></i></span> |
| 215 | 214 | </div> |
| 216 | - <input type="text" id="ga_code" class="form-control submit-button" placeholder="' . $lang->get('ga_identification_code') . '" /> |
|
| 215 | + <input type="text" id="ga_code" class="form-control submit-button" placeholder="' . $lang->get('ga_identification_code').'" /> |
|
| 217 | 216 | <span class="input-group-append"> |
| 218 | 217 | <button type="button" class="btn btn-info btn-flat" onclick="send_user_new_temporary_ga_code()"> |
| 219 | 218 | <i class="fa-solid fa-envelope form-control-feedback pointer infotip" |
| 220 | - title="' . $lang->get('i_need_to_generate_new_ga_code') . '"></i> |
|
| 219 | + title="' . $lang->get('i_need_to_generate_new_ga_code').'"></i> |
|
| 221 | 220 | </button> |
| 222 | 221 | </span> |
| 223 | 222 | </div> |
@@ -235,7 +234,7 @@ discard block |
||
| 235 | 234 | <script> |
| 236 | 235 | var seconds = 1; |
| 237 | 236 | function updateLogonButton(timeToGo){ |
| 238 | - document.getElementById("but_identify_user").value = "' . $lang->get('duration_login_attempt') . ' " + timeToGo; |
|
| 237 | + document.getElementById("but_identify_user").value = "' . $lang->get('duration_login_attempt').' " + timeToGo; |
|
| 239 | 238 | } |
| 240 | 239 | $( window ).on( "load", function() { |
| 241 | 240 | updateLogonButton(seconds); |
@@ -244,7 +243,7 @@ discard block |
||
| 244 | 243 | if (seconds >= 0) { |
| 245 | 244 | updateLogonButton(seconds); |
| 246 | 245 | } else if(seconds === 0) { |
| 247 | - launchIdentify("", "' . $nextUrl . '"); |
|
| 246 | + launchIdentify("", "' . $nextUrl.'"); |
|
| 248 | 247 | } |
| 249 | 248 | updateLogonButton(seconds); |
| 250 | 249 | }, |
@@ -265,15 +264,15 @@ discard block |
||
| 265 | 264 | <div class="col-8"> |
| 266 | 265 | <div id="yubiko-new-key" class="alert alert-info hidden"> |
| 267 | 266 | <p> |
| 268 | - <input type="text" size="10" id="yubico_user_id" class="form-control" placeholder="' . $lang->get('yubico_user_id') . '"> |
|
| 267 | + <input type="text" size="10" id="yubico_user_id" class="form-control" placeholder="' . $lang->get('yubico_user_id').'"> |
|
| 269 | 268 | </p> |
| 270 | 269 | <p> |
| 271 | - <input type="text" size="10" id="yubico_user_key" class="form-control" placeholder="' . $lang->get('yubico_user_key') . '"> |
|
| 270 | + <input type="text" size="10" id="yubico_user_key" class="form-control" placeholder="' . $lang->get('yubico_user_key').'"> |
|
| 272 | 271 | </p> |
| 273 | 272 | </div> |
| 274 | - <input autocomplete="off" type="text" id="yubico_key" class="form-control submit-button" placeholder="' . $lang->get('press_your_yubico_key') . '"> |
|
| 273 | + <input autocomplete="off" type="text" id="yubico_key" class="form-control submit-button" placeholder="' . $lang->get('press_your_yubico_key').'"> |
|
| 275 | 274 | <div class="row"> |
| 276 | - <span class="ml-2 mt-1 font-weight-light small pointer" id="register-yubiko-key">' . $lang->get('register_new_yubiko_key') . '</span> |
|
| 275 | + <span class="ml-2 mt-1 font-weight-light small pointer" id="register-yubiko-key">' . $lang->get('register_new_yubiko_key').'</span> |
|
| 277 | 276 | </div> |
| 278 | 277 | </div> |
| 279 | 278 | </div>'; |
@@ -282,22 +281,22 @@ discard block |
||
| 282 | 281 | echo ' |
| 283 | 282 | <div class="row mt-5"> |
| 284 | 283 | <div class="col-12"> |
| 285 | - <button id="but_identify_user" class="btn btn-primary btn-block">' . $lang->get('log_in') . '</button> |
|
| 284 | + <button id="but_identify_user" class="btn btn-primary btn-block">' . $lang->get('log_in').'</button> |
|
| 286 | 285 | |
| 287 | 286 | <!-- In case of upgrade, the user has to provide his One Time Code --> |
| 288 | 287 | <div class="card-body user-one-time-code-card-body hidden"> |
| 289 | - <h5 class="login-box-msg">' . $lang->get('provide_personal_one_time_code') . '</h5> |
|
| 288 | + <h5 class="login-box-msg">' . $lang->get('provide_personal_one_time_code').'</h5> |
|
| 290 | 289 | |
| 291 | 290 | <div class="input-group has-feedback mb-2 mt-4"> |
| 292 | 291 | <div class="input-group-prepend"> |
| 293 | 292 | <span class="input-group-text"><i class="fa-solid fa-unlock-alt"></i></span> |
| 294 | 293 | </div> |
| 295 | - <input type="password" id="user-one-time-code" class="form-control" placeholder="' . $lang->get('one_time_code') . '"> |
|
| 294 | + <input type="password" id="user-one-time-code" class="form-control" placeholder="' . $lang->get('one_time_code').'"> |
|
| 296 | 295 | </div> |
| 297 | 296 | |
| 298 | 297 | <div class="row mb-3"> |
| 299 | 298 | <div class="col-12"> |
| 300 | - <button id="but_confirm_otc" class="btn btn-primary btn-block">' . $lang->get('confirm') . '</button> |
|
| 299 | + <button id="but_confirm_otc" class="btn btn-primary btn-block">' . $lang->get('confirm').'</button> |
|
| 301 | 300 | </div> |
| 302 | 301 | </div> |
| 303 | 302 | </div> |
@@ -312,7 +311,7 @@ discard block |
||
| 312 | 311 | <hr class="mt-3 mb-3"/> |
| 313 | 312 | <div class="row mb-2"> |
| 314 | 313 | <div class="col-12"> |
| 315 | - <button id="but_login_with_oauth2" class="btn btn-primary btn-block">' . $SETTINGS['oauth2_client_appname'] . '</button> |
|
| 314 | + <button id="but_login_with_oauth2" class="btn btn-primary btn-block">' . $SETTINGS['oauth2_client_appname'].'</button> |
|
| 316 | 315 | </div> |
| 317 | 316 | </div>'; |
| 318 | 317 | } |
@@ -325,10 +324,10 @@ discard block |
||
| 325 | 324 | // In case of password change |
| 326 | 325 | echo ' |
| 327 | 326 | <div class="card-body confirm-password-card-body hidden"> |
| 328 | - <h5 class="login-box-msg">' . $lang->get('new_password_required') . '</h5> |
|
| 327 | + <h5 class="login-box-msg">' . $lang->get('new_password_required').'</h5> |
|
| 329 | 328 | |
| 330 | 329 | <div class="alert alert-info"> |
| 331 | - <div class="text-center"><i class="icon fa fa-info"></i>' . $lang->get('password_strength') . ' |
|
| 330 | + <div class="text-center"><i class="icon fa fa-info"></i>' . $lang->get('password_strength').' |
|
| 332 | 331 | <span id="confirm-password-level" class="ml-2 font-weight-bold"></span></div> |
| 333 | 332 | </div> |
| 334 | 333 | |
@@ -338,20 +337,20 @@ discard block |
||
| 338 | 337 | <div class="input-group-prepend"> |
| 339 | 338 | <span class="input-group-text"><i class="fas fa-key"></i></span> |
| 340 | 339 | </div> |
| 341 | - <input type="password" id="current-user-password" class="form-control" placeholder="' . $lang->get('current_password') . '"> |
|
| 340 | + <input type="password" id="current-user-password" class="form-control" placeholder="' . $lang->get('current_password').'"> |
|
| 342 | 341 | </div> |
| 343 | 342 | </div> |
| 344 | 343 | <div class="input-group has-feedback mb-2 mt-4"> |
| 345 | 344 | <div class="input-group-prepend"> |
| 346 | 345 | <span class="input-group-text"><i class="fas fa-key"></i></span> |
| 347 | 346 | </div> |
| 348 | - <input type="password" id="new-user-password" class="form-control" placeholder="' . $lang->get('index_new_pw') . '"> |
|
| 347 | + <input type="password" id="new-user-password" class="form-control" placeholder="' . $lang->get('index_new_pw').'"> |
|
| 349 | 348 | </div> |
| 350 | 349 | <div class="input-group has-feedback mb-2"> |
| 351 | 350 | <div class="input-group-prepend"> |
| 352 | 351 | <span class="input-group-text"><i class="fas fa-key"></i></span> |
| 353 | 352 | </div> |
| 354 | - <input type="password" id="new-user-password-confirm" class="form-control" placeholder="' . $lang->get('index_change_pw_confirmation') . '"> |
|
| 353 | + <input type="password" id="new-user-password-confirm" class="form-control" placeholder="' . $lang->get('index_change_pw_confirmation').'"> |
|
| 355 | 354 | </div> |
| 356 | 355 | <div class="row mb-3"> |
| 357 | 356 | <div class="col-md-12 offset-sm-4 text-center"> |
@@ -362,7 +361,7 @@ discard block |
||
| 362 | 361 | </div> |
| 363 | 362 | <div class="row mb-3"> |
| 364 | 363 | <div class="col-12"> |
| 365 | - <button id="but_confirm_new_password" class="btn btn-primary btn-block">' . $lang->get('confirm') . '</button> |
|
| 364 | + <button id="but_confirm_new_password" class="btn btn-primary btn-block">' . $lang->get('confirm').'</button> |
|
| 366 | 365 | </div> |
| 367 | 366 | </div> |
| 368 | 367 | </div> |
@@ -370,20 +369,20 @@ discard block |
||
| 370 | 369 | |
| 371 | 370 | <div class="card-body hidden" id="card-user-treat-psk"> |
| 372 | 371 | <div class="alert alert-info"> |
| 373 | - <div class="text-center"><i class="icon fa fa-info"></i>' . $lang->get('user_has_psk_info') . '</div> |
|
| 372 | + <div class="text-center"><i class="icon fa fa-info"></i>' . $lang->get('user_has_psk_info').'</div> |
|
| 374 | 373 | </div> |
| 375 | 374 | <div class="input-group has-feedback mb-2"> |
| 376 | 375 | <div class="input-group-prepend"> |
| 377 | 376 | <span class="input-group-text"><i class="fas fa-key"></i></span> |
| 378 | 377 | </div> |
| 379 | - <input type="password" id="user-old-defuse-psk" class="form-control" placeholder="' . $lang->get('home_personal_saltkey') . '"> |
|
| 378 | + <input type="password" id="user-old-defuse-psk" class="form-control" placeholder="' . $lang->get('home_personal_saltkey').'"> |
|
| 380 | 379 | </div> |
| 381 | 380 | <div class="row mb-3 mt-4"> |
| 382 | 381 | <div class="col-12"> |
| 383 | - <button id="but_confirm_defuse_psk" class="btn btn-primary btn-block">' . $lang->get('launch') . '</button> |
|
| 382 | + <button id="but_confirm_defuse_psk" class="btn btn-primary btn-block">' . $lang->get('launch').'</button> |
|
| 384 | 383 | </div> |
| 385 | 384 | <div class="col-12 mt-3"> |
| 386 | - <button id="but_confirm_forgot_defuse_psk" class="btn btn-danger btn-block text-bold">' . $lang->get('i_cannot_remember') . '</button> |
|
| 385 | + <button id="but_confirm_forgot_defuse_psk" class="btn btn-danger btn-block text-bold">' . $lang->get('i_cannot_remember').'</button> |
|
| 387 | 386 | </div> |
| 388 | 387 | </div> |
| 389 | 388 | </div> |
@@ -71,7 +71,7 @@ |
||
| 71 | 71 | function reloadCacheTable(): void |
| 72 | 72 | { |
| 73 | 73 | // Load expected files |
| 74 | - require_once __DIR__. '/../sources/main.functions.php'; |
|
| 74 | + require_once __DIR__.'/../sources/main.functions.php'; |
|
| 75 | 75 | |
| 76 | 76 | updateCacheTable('reload', NULL); |
| 77 | 77 | } |
| 78 | 78 | \ No newline at end of file |
@@ -137,14 +137,14 @@ discard block |
||
| 137 | 137 | && $t->personal_folder == 0 |
| 138 | 138 | ) { |
| 139 | 139 | // get $t->parent_id |
| 140 | - $data = DB::queryFirstRow('SELECT title FROM ' . prefixTable('nested_tree') . ' WHERE id = %i', $t->parent_id); |
|
| 140 | + $data = DB::queryFirstRow('SELECT title FROM '.prefixTable('nested_tree').' WHERE id = %i', $t->parent_id); |
|
| 141 | 141 | if ($t->nlevel == 1) { |
| 142 | 142 | $data['title'] = $lang->get('root'); |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | // get rights on this folder |
| 146 | 146 | $arrayRights = array(); |
| 147 | - $rows = DB::query('SELECT fonction_id FROM ' . prefixTable('rights') . ' WHERE authorized=%i AND tree_id = %i', 1, $t->id); |
|
| 147 | + $rows = DB::query('SELECT fonction_id FROM '.prefixTable('rights').' WHERE authorized=%i AND tree_id = %i', 1, $t->id); |
|
| 148 | 148 | foreach ($rows as $record) { |
| 149 | 149 | array_push($arrayRights, $record['fonction_id']); |
| 150 | 150 | } |
@@ -162,8 +162,8 @@ discard block |
||
| 162 | 162 | 'SELECT m.valeur AS valeur, n.renewal_period AS renewal_period, |
| 163 | 163 | n.bloquer_creation AS bloquer_creation, n.bloquer_modification AS bloquer_modification, |
| 164 | 164 | n.fa_icon, n.fa_icon_selected |
| 165 | - FROM ' . prefixTable('misc') . ' AS m, |
|
| 166 | - ' . prefixTable('nested_tree') . ' AS n |
|
| 165 | + FROM ' . prefixTable('misc').' AS m, |
|
| 166 | + ' . prefixTable('nested_tree').' AS n |
|
| 167 | 167 | WHERE m.type=%s AND m.intitule = n.id AND m.intitule = %i', |
| 168 | 168 | 'complex', |
| 169 | 169 | $t->id |
@@ -191,16 +191,16 @@ discard block |
||
| 191 | 191 | $arrayColumns['folderComplexity'] = ''; |
| 192 | 192 | } |
| 193 | 193 | |
| 194 | - if (is_null($node_data)=== false) { |
|
| 194 | + if (is_null($node_data) === false) { |
|
| 195 | 195 | $arrayColumns['renewalPeriod'] = (int) $node_data['renewal_period']; |
| 196 | 196 | } else { |
| 197 | - $arrayColumns['renewalPeriod']=0; |
|
| 197 | + $arrayColumns['renewalPeriod'] = 0; |
|
| 198 | 198 | } |
| 199 | 199 | |
| 200 | 200 | //col7 |
| 201 | 201 | $data7 = DB::queryFirstRow( |
| 202 | 202 | 'SELECT bloquer_creation,bloquer_modification |
| 203 | - FROM ' . prefixTable('nested_tree') . ' |
|
| 203 | + FROM ' . prefixTable('nested_tree').' |
|
| 204 | 204 | WHERE id = %i', |
| 205 | 205 | intval($t->id) |
| 206 | 206 | ); |
@@ -359,7 +359,7 @@ discard block |
||
| 359 | 359 | // Get info about this folder |
| 360 | 360 | $dataFolder = DB::queryfirstrow( |
| 361 | 361 | 'SELECT * |
| 362 | - FROM ' . prefixTable('nested_tree') . ' |
|
| 362 | + FROM ' . prefixTable('nested_tree').' |
|
| 363 | 363 | WHERE id = %i', |
| 364 | 364 | $inputData['id'] |
| 365 | 365 | ); |
@@ -395,7 +395,7 @@ discard block |
||
| 395 | 395 | //check if parent folder is personal |
| 396 | 396 | $dataParent = DB::queryfirstrow( |
| 397 | 397 | 'SELECT personal_folder, bloquer_creation, bloquer_modification |
| 398 | - FROM ' . prefixTable('nested_tree') . ' |
|
| 398 | + FROM ' . prefixTable('nested_tree').' |
|
| 399 | 399 | WHERE id = %i', |
| 400 | 400 | $inputData['parentId'] |
| 401 | 401 | ); |
@@ -424,7 +424,7 @@ discard block |
||
| 424 | 424 | // get complexity level for this folder |
| 425 | 425 | $data = DB::queryfirstrow( |
| 426 | 426 | 'SELECT valeur |
| 427 | - FROM ' . prefixTable('misc') . ' |
|
| 427 | + FROM ' . prefixTable('misc').' |
|
| 428 | 428 | WHERE intitule = %i AND type = %s', |
| 429 | 429 | $inputData['parentId'], |
| 430 | 430 | 'complex' |
@@ -435,7 +435,7 @@ discard block |
||
| 435 | 435 | array( |
| 436 | 436 | 'error' => true, |
| 437 | 437 | 'message' => $lang->get('error_folder_complexity_lower_than_top_folder') |
| 438 | - . ' [<b>' . TP_PW_COMPLEXITY[$data['valeur']][1] . '</b>]', |
|
| 438 | + . ' [<b>'.TP_PW_COMPLEXITY[$data['valeur']][1].'</b>]', |
|
| 439 | 439 | ), |
| 440 | 440 | 'encode' |
| 441 | 441 | ); |
@@ -596,7 +596,7 @@ discard block |
||
| 596 | 596 | // Check if parent folder is personal |
| 597 | 597 | $dataParent = DB::queryfirstrow( |
| 598 | 598 | 'SELECT personal_folder |
| 599 | - FROM ' . prefixTable('nested_tree') . ' |
|
| 599 | + FROM ' . prefixTable('nested_tree').' |
|
| 600 | 600 | WHERE id = %i', |
| 601 | 601 | $inputData['parentId'] |
| 602 | 602 | ); |
@@ -636,7 +636,7 @@ discard block |
||
| 636 | 636 | echo prepareExchangedData( |
| 637 | 637 | array( |
| 638 | 638 | 'error' => $creationStatus['error'], |
| 639 | - 'message' => $creationStatus['error'] === true ? $lang->get('error_not_allowed_to') : $lang->get('folder_created') , |
|
| 639 | + 'message' => $creationStatus['error'] === true ? $lang->get('error_not_allowed_to') : $lang->get('folder_created'), |
|
| 640 | 640 | 'newId' => $creationStatus['newId'], |
| 641 | 641 | ), |
| 642 | 642 | 'encode' |
@@ -684,7 +684,7 @@ discard block |
||
| 684 | 684 | echo prepareExchangedData( |
| 685 | 685 | array( |
| 686 | 686 | 'error' => true, |
| 687 | - 'message' => $lang->get('error_not_allowed_to'). " (You can't delete the root folder)", |
|
| 687 | + 'message' => $lang->get('error_not_allowed_to')." (You can't delete the root folder)", |
|
| 688 | 688 | ), |
| 689 | 689 | 'encode' |
| 690 | 690 | ); |
@@ -694,7 +694,7 @@ discard block |
||
| 694 | 694 | // Ensure that user has access to all folders |
| 695 | 695 | $foldersAccessible = DB::query( |
| 696 | 696 | 'SELECT id |
| 697 | - FROM ' . prefixTable('nested_tree') . ' |
|
| 697 | + FROM ' . prefixTable('nested_tree').' |
|
| 698 | 698 | WHERE id IN %li AND id IN %li', |
| 699 | 699 | $post_folders, |
| 700 | 700 | $session->get('user-accessible_folders') |
@@ -708,7 +708,7 @@ discard block |
||
| 708 | 708 | echo prepareExchangedData( |
| 709 | 709 | array( |
| 710 | 710 | 'error' => true, |
| 711 | - 'message' => $lang->get('error_not_allowed_to') . ' (The following folders are not accessible or do not exist: ' . implode(', ', $missingFolders) . ')', |
|
| 711 | + 'message' => $lang->get('error_not_allowed_to').' (The following folders are not accessible or do not exist: '.implode(', ', $missingFolders).')', |
|
| 712 | 712 | ), |
| 713 | 713 | 'encode' |
| 714 | 714 | ); |
@@ -725,7 +725,7 @@ discard block |
||
| 725 | 725 | // Check if parent folder is personal |
| 726 | 726 | $dataParent = DB::queryfirstrow( |
| 727 | 727 | 'SELECT personal_folder |
| 728 | - FROM ' . prefixTable('nested_tree') . ' |
|
| 728 | + FROM ' . prefixTable('nested_tree').' |
|
| 729 | 729 | WHERE id = %i', |
| 730 | 730 | $folderId |
| 731 | 731 | ); |
@@ -771,10 +771,10 @@ discard block |
||
| 771 | 771 | prefixTable('misc'), |
| 772 | 772 | array( |
| 773 | 773 | 'type' => 'folder_deleted', |
| 774 | - 'intitule' => 'f' . $thisSubFolders->id, |
|
| 775 | - 'valeur' => $thisSubFolders->id . ', ' . $thisSubFolders->parent_id . ', ' . |
|
| 776 | - $thisSubFolders->title . ', ' . $thisSubFolders->nleft . ', ' . $thisSubFolders->nright . ', ' . |
|
| 777 | - $thisSubFolders->nlevel . ', 0, 0, 0, 0', |
|
| 774 | + 'intitule' => 'f'.$thisSubFolders->id, |
|
| 775 | + 'valeur' => $thisSubFolders->id.', '.$thisSubFolders->parent_id.', '. |
|
| 776 | + $thisSubFolders->title.', '.$thisSubFolders->nleft.', '.$thisSubFolders->nright.', '. |
|
| 777 | + $thisSubFolders->nlevel.', 0, 0, 0, 0', |
|
| 778 | 778 | 'created_at' => time(), |
| 779 | 779 | ) |
| 780 | 780 | ); |
@@ -783,7 +783,7 @@ discard block |
||
| 783 | 783 | |
| 784 | 784 | //delete items & logs |
| 785 | 785 | $itemsInSubFolder = DB::query( |
| 786 | - 'SELECT id FROM ' . prefixTable('items') . ' |
|
| 786 | + 'SELECT id FROM '.prefixTable('items').' |
|
| 787 | 787 | WHERE id_tree=%i', |
| 788 | 788 | $thisSubFolders->id |
| 789 | 789 | ); |
@@ -813,7 +813,7 @@ discard block |
||
| 813 | 813 | } |
| 814 | 814 | |
| 815 | 815 | //Update CACHE table |
| 816 | - updateCacheTable('delete_value',(int) $item['id']); |
|
| 816 | + updateCacheTable('delete_value', (int) $item['id']); |
|
| 817 | 817 | } |
| 818 | 818 | |
| 819 | 819 | //Actualize the variable |
@@ -923,7 +923,7 @@ discard block |
||
| 923 | 923 | // Check if target parent folder is personal |
| 924 | 924 | $dataParent = DB::queryfirstrow( |
| 925 | 925 | 'SELECT personal_folder |
| 926 | - FROM ' . prefixTable('nested_tree') . ' |
|
| 926 | + FROM ' . prefixTable('nested_tree').' |
|
| 927 | 927 | WHERE id = %i', |
| 928 | 928 | $post_target_folder_id |
| 929 | 929 | ); |
@@ -977,7 +977,7 @@ discard block |
||
| 977 | 977 | // get complexity of current node |
| 978 | 978 | $nodeComplexity = DB::queryfirstrow( |
| 979 | 979 | 'SELECT valeur |
| 980 | - FROM ' . prefixTable('misc') . ' |
|
| 980 | + FROM ' . prefixTable('misc').' |
|
| 981 | 981 | WHERE intitule = %i AND type= %s', |
| 982 | 982 | $nodeInfo->id, |
| 983 | 983 | 'complex' |
@@ -1054,7 +1054,7 @@ discard block |
||
| 1054 | 1054 | // If it is a subfolder, then give access to it for all roles that allows the parent folder |
| 1055 | 1055 | $rows = DB::query( |
| 1056 | 1056 | 'SELECT role_id, type |
| 1057 | - FROM ' . prefixTable('roles_values') . ' |
|
| 1057 | + FROM ' . prefixTable('roles_values').' |
|
| 1058 | 1058 | WHERE folder_id = %i', |
| 1059 | 1059 | $parentId |
| 1060 | 1060 | ); |
@@ -1062,7 +1062,7 @@ discard block |
||
| 1062 | 1062 | // Add access to this subfolder after checking that it is not already set |
| 1063 | 1063 | DB::query( |
| 1064 | 1064 | 'SELECT * |
| 1065 | - FROM ' . prefixTable('roles_values') . ' |
|
| 1065 | + FROM ' . prefixTable('roles_values').' |
|
| 1066 | 1066 | WHERE folder_id = %i AND role_id = %i', |
| 1067 | 1067 | $newFolderId, |
| 1068 | 1068 | $record['role_id'] |
@@ -1082,7 +1082,7 @@ discard block |
||
| 1082 | 1082 | // if parent folder has Custom Fields Categories then add to this child one too |
| 1083 | 1083 | $rows = DB::query( |
| 1084 | 1084 | 'SELECT id_category |
| 1085 | - FROM ' . prefixTable('categories_folders') . ' |
|
| 1085 | + FROM ' . prefixTable('categories_folders').' |
|
| 1086 | 1086 | WHERE id_folder = %i', |
| 1087 | 1087 | $nodeInfo->id |
| 1088 | 1088 | ); |
@@ -1101,7 +1101,7 @@ discard block |
||
| 1101 | 1101 | |
| 1102 | 1102 | $rows = DB::query( |
| 1103 | 1103 | 'SELECT * |
| 1104 | - FROM ' . prefixTable('items') . ' |
|
| 1104 | + FROM ' . prefixTable('items').' |
|
| 1105 | 1105 | WHERE id_tree = %i', |
| 1106 | 1106 | $nodeInfo->id |
| 1107 | 1107 | ); |
@@ -1110,7 +1110,7 @@ discard block |
||
| 1110 | 1110 | // if it is then don't copy it |
| 1111 | 1111 | $item_deleted = DB::queryFirstRow( |
| 1112 | 1112 | 'SELECT * |
| 1113 | - FROM ' . prefixTable('log_items') . ' |
|
| 1113 | + FROM ' . prefixTable('log_items').' |
|
| 1114 | 1114 | WHERE id_item = %i AND action = %s |
| 1115 | 1115 | ORDER BY date DESC |
| 1116 | 1116 | LIMIT 0, 1', |
@@ -1121,7 +1121,7 @@ discard block |
||
| 1121 | 1121 | |
| 1122 | 1122 | $item_restored = DB::queryFirstRow( |
| 1123 | 1123 | 'SELECT * |
| 1124 | - FROM ' . prefixTable('log_items') . ' |
|
| 1124 | + FROM ' . prefixTable('log_items').' |
|
| 1125 | 1125 | WHERE id_item = %i AND action = %s |
| 1126 | 1126 | ORDER BY date DESC |
| 1127 | 1127 | LIMIT 0, 1', |
@@ -1136,7 +1136,7 @@ discard block |
||
| 1136 | 1136 | // Get the ITEM object key for the user |
| 1137 | 1137 | $userKey = DB::queryFirstRow( |
| 1138 | 1138 | 'SELECT share_key |
| 1139 | - FROM ' . prefixTable('sharekeys_items') . ' |
|
| 1139 | + FROM ' . prefixTable('sharekeys_items').' |
|
| 1140 | 1140 | WHERE user_id = %i AND object_id = %i', |
| 1141 | 1141 | $session->get('user-id'), |
| 1142 | 1142 | $record['id'] |
@@ -1209,7 +1209,7 @@ discard block |
||
| 1209 | 1209 | // Manage Custom Fields |
| 1210 | 1210 | $categories = DB::query( |
| 1211 | 1211 | 'SELECT * |
| 1212 | - FROM ' . prefixTable('categories_items') . ' |
|
| 1212 | + FROM ' . prefixTable('categories_items').' |
|
| 1213 | 1213 | WHERE item_id = %i', |
| 1214 | 1214 | $record['id'] |
| 1215 | 1215 | ); |
@@ -1256,15 +1256,15 @@ discard block |
||
| 1256 | 1256 | $files = DB::query( |
| 1257 | 1257 | 'SELECT f.id AS id, f.file AS file, f.name AS name, f.status AS status, f.extension AS extension, |
| 1258 | 1258 | f.size AS size, f.type AS type, s.share_key AS share_key |
| 1259 | - FROM ' . prefixTable('files') . ' AS f |
|
| 1260 | - INNER JOIN ' . prefixTable('sharekeys_files') . ' AS s ON (f.id = s.object_id) |
|
| 1259 | + FROM ' . prefixTable('files').' AS f |
|
| 1260 | + INNER JOIN ' . prefixTable('sharekeys_files').' AS s ON (f.id = s.object_id) |
|
| 1261 | 1261 | WHERE s.user_id = %i AND f.id_item = %i', |
| 1262 | 1262 | $session->get('user-id'), |
| 1263 | 1263 | $record['id'] |
| 1264 | 1264 | ); |
| 1265 | 1265 | foreach ($files as $file) { |
| 1266 | 1266 | // Check if file still exists |
| 1267 | - if (file_exists($SETTINGS['path_to_upload_folder'] . DIRECTORY_SEPARATOR . TP_FILE_PREFIX . base64_decode($file['file'])) === true) { |
|
| 1267 | + if (file_exists($SETTINGS['path_to_upload_folder'].DIRECTORY_SEPARATOR.TP_FILE_PREFIX.base64_decode($file['file'])) === true) { |
|
| 1268 | 1268 | // Step1 - decrypt the file |
| 1269 | 1269 | $fileContent = decryptFile( |
| 1270 | 1270 | $file['file'], |
@@ -1274,9 +1274,9 @@ discard block |
||
| 1274 | 1274 | |
| 1275 | 1275 | // Step2 - create file |
| 1276 | 1276 | // deepcode ignore InsecureHash: Is not a password, just a random string for a file name |
| 1277 | - $newFileName = md5(time() . '_' . $file['id']) . '.' . $file['extension']; |
|
| 1277 | + $newFileName = md5(time().'_'.$file['id']).'.'.$file['extension']; |
|
| 1278 | 1278 | |
| 1279 | - $outstream = fopen($SETTINGS['path_to_upload_folder'] . DIRECTORY_SEPARATOR . $newFileName, 'ab'); |
|
| 1279 | + $outstream = fopen($SETTINGS['path_to_upload_folder'].DIRECTORY_SEPARATOR.$newFileName, 'ab'); |
|
| 1280 | 1280 | if ($outstream === false) { |
| 1281 | 1281 | echo prepareExchangedData( |
| 1282 | 1282 | array( |
@@ -1425,7 +1425,7 @@ discard block |
||
| 1425 | 1425 | // Get path |
| 1426 | 1426 | $text = ''; |
| 1427 | 1427 | foreach ($tree->getPath($folder->id, false) as $fld) { |
| 1428 | - $text .= empty($text) === true ? ' [<i>' . $fld->title : ' > ' . $fld->title; |
|
| 1428 | + $text .= empty($text) === true ? ' [<i>'.$fld->title : ' > '.$fld->title; |
|
| 1429 | 1429 | } |
| 1430 | 1430 | |
| 1431 | 1431 | // Save array |
@@ -1435,7 +1435,7 @@ discard block |
||
| 1435 | 1435 | 'id' => (int) $folder->id, |
| 1436 | 1436 | 'label' => $folder->title, |
| 1437 | 1437 | 'level' => $folder->nlevel, |
| 1438 | - 'path' => empty($text) === true ? '' : $text . '</i>]' |
|
| 1438 | + 'path' => empty($text) === true ? '' : $text.'</i>]' |
|
| 1439 | 1439 | ) |
| 1440 | 1440 | ); |
| 1441 | 1441 | } |