@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | return $erreur; |
| 90 | 90 | } |
| 91 | 91 | // chercher dans la base |
| 92 | - $mode_document = 'logo' . $mode; |
|
| 92 | + $mode_document = 'logo'.$mode; |
|
| 93 | 93 | |
| 94 | 94 | include_spip('inc/documents'); |
| 95 | 95 | $erreur = ''; |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | $tmp_name = false; |
| 107 | 107 | if (file_exists($source)) { |
| 108 | 108 | $tmp_name = $source; |
| 109 | - } elseif (file_exists($f = determine_upload() . $source)) { |
|
| 109 | + } elseif (file_exists($f = determine_upload().$source)) { |
|
| 110 | 110 | $tmp_name = $f; |
| 111 | 111 | } |
| 112 | 112 | if (!$tmp_name) { |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | |
| 141 | 141 | if (!is_numeric($id_document)) { |
| 142 | 142 | $erreur = ($id_document ?: 'Erreur inconnue'); |
| 143 | - spip_log("Erreur ajout logo : $erreur pour source=" . json_encode($source, JSON_THROW_ON_ERROR), 'logo'); |
|
| 143 | + spip_log("Erreur ajout logo : $erreur pour source=".json_encode($source, JSON_THROW_ON_ERROR), 'logo'); |
|
| 144 | 144 | return $erreur; |
| 145 | 145 | } |
| 146 | 146 | |
@@ -166,23 +166,23 @@ discard block |
||
| 166 | 166 | $desc = $trouver_table($table); |
| 167 | 167 | |
| 168 | 168 | foreach (['on', 'off'] as $mode) { |
| 169 | - $nom_base = $type . $mode; |
|
| 169 | + $nom_base = $type.$mode; |
|
| 170 | 170 | $dir = (defined('_DIR_LOGOS') ? _DIR_LOGOS : _DIR_IMG); |
| 171 | 171 | |
| 172 | - $files = glob($dir . $nom_base . '*'); |
|
| 172 | + $files = glob($dir.$nom_base.'*'); |
|
| 173 | 173 | // est-ce que c'est une nouvelle tentative de migration ? |
| 174 | 174 | // dans ce cas les logos sont deja dans IMG/logo/ |
| 175 | 175 | if (!(is_countable($files) ? count($files) : 0)) { |
| 176 | - $files = glob($dir_logos . $nom_base . '*'); |
|
| 176 | + $files = glob($dir_logos.$nom_base.'*'); |
|
| 177 | 177 | if (is_countable($files) ? count($files) : 0) { |
| 178 | 178 | // mais il faut verifier si ils ont pas deja ete migres pour tout ou partie |
| 179 | 179 | $filescheck = []; |
| 180 | 180 | foreach ($files as $file) { |
| 181 | - $short = basename(dirname($file)) . DIRECTORY_SEPARATOR . basename($file); |
|
| 181 | + $short = basename(dirname($file)).DIRECTORY_SEPARATOR.basename($file); |
|
| 182 | 182 | $filescheck[$short] = $file; |
| 183 | 183 | } |
| 184 | 184 | // trouver ceux deja migres |
| 185 | - $deja = sql_allfetsel('fichier', 'spip_documents', sql_in('fichier', array_keys($filescheck)) . " AND mode LIKE 'logo%'"); |
|
| 185 | + $deja = sql_allfetsel('fichier', 'spip_documents', sql_in('fichier', array_keys($filescheck))." AND mode LIKE 'logo%'"); |
|
| 186 | 186 | if (is_countable($deja) ? count($deja) : 0) { |
| 187 | 187 | $deja = array_column($deja, 'fichier'); |
| 188 | 188 | $restant = array_diff(array_keys($filescheck), $deja); |
@@ -201,11 +201,11 @@ discard block |
||
| 201 | 201 | } |
| 202 | 202 | } |
| 203 | 203 | |
| 204 | - spip_log("logo_migrer_en_base $objet $mode : " . (is_countable($files) ? count($files) : 0) . ' logos restant', 'maj' . _LOG_INFO_IMPORTANTE); |
|
| 204 | + spip_log("logo_migrer_en_base $objet $mode : ".(is_countable($files) ? count($files) : 0).' logos restant', 'maj'._LOG_INFO_IMPORTANTE); |
|
| 205 | 205 | |
| 206 | 206 | $deja = []; |
| 207 | 207 | foreach ($files as $file) { |
| 208 | - $logo = substr($file, strlen($dir . $nom_base)); |
|
| 208 | + $logo = substr($file, strlen($dir.$nom_base)); |
|
| 209 | 209 | $logo = explode('.', $logo); |
| 210 | 210 | if ( |
| 211 | 211 | is_numeric($logo[0]) |
@@ -216,16 +216,16 @@ discard block |
||
| 216 | 216 | // if no logo in base |
| 217 | 217 | if (!$logo or (is_countable($logo) ? count($logo) : 0) < 6) { |
| 218 | 218 | foreach ($formats_logos as $format) { |
| 219 | - if (@file_exists($d = ($dir . ($nom = $nom_base . intval($id_objet) . '.' . $format)))) { |
|
| 219 | + if (@file_exists($d = ($dir.($nom = $nom_base.intval($id_objet).'.'.$format)))) { |
|
| 220 | 220 | if (isset($desc['field']['date_modif'])) { |
| 221 | 221 | $date_modif = sql_getfetsel('date_modif', $table, "$_id_objet=$id_objet"); |
| 222 | 222 | } else { |
| 223 | 223 | $date_modif = null; |
| 224 | 224 | } |
| 225 | 225 | // logo_modifier commence par supprimer le logo existant, donc on le deplace pour pas le perdre |
| 226 | - @rename($d, $dir_logos . $nom); |
|
| 226 | + @rename($d, $dir_logos.$nom); |
|
| 227 | 227 | // et on le declare comme nouveau logo |
| 228 | - logo_modifier($objet, $id_objet, $mode, $dir_logos . $nom); |
|
| 228 | + logo_modifier($objet, $id_objet, $mode, $dir_logos.$nom); |
|
| 229 | 229 | if ($date_modif) { |
| 230 | 230 | sql_updateq($table, ['date_modif' => $date_modif], "$_id_objet=$id_objet"); |
| 231 | 231 | } |
@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | // si le fichier est encore la on le move : rien a faire ici |
| 240 | 240 | // (sauf si c'est une re-migration : il est deja dans logo/ donc il bouge pas) |
| 241 | 241 | if ($dir !== $dir_logos and file_exists($file)) { |
| 242 | - @rename($file, $dir_logos_erreurs . basename($file)); |
|
| 242 | + @rename($file, $dir_logos_erreurs.basename($file)); |
|
| 243 | 243 | } |
| 244 | 244 | |
| 245 | 245 | if ($time_limit and time() > $time_limit) { |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | $t = ($GLOBALS['taille_min'] * $GLOBALS['taille_min']); |
| 77 | 77 | if ($GLOBALS['taille_min'] !== $GLOBALS['taille_max']) { |
| 78 | 78 | $t = $t * 0.9; // marge de securite |
| 79 | - echo round($t / 1_000_000, 3) . ' Mpx'; |
|
| 79 | + echo round($t / 1_000_000, 3).' Mpx'; |
|
| 80 | 80 | } else { |
| 81 | 81 | // c'est un cas "on a reussi la borne max initiale, donc on a pas de limite connue" |
| 82 | 82 | $t = 0; |
@@ -112,19 +112,19 @@ discard block |
||
| 112 | 112 | $image_source = chemin_image('test.png'); |
| 113 | 113 | $GLOBALS['redirect'] = generer_url_action( |
| 114 | 114 | 'tester_taille', |
| 115 | - "i=$i&arg=" . $GLOBALS['taille_min'] . '-' . $GLOBALS['taille_test'] |
|
| 115 | + "i=$i&arg=".$GLOBALS['taille_min'].'-'.$GLOBALS['taille_test'] |
|
| 116 | 116 | ); |
| 117 | 117 | |
| 118 | 118 | ob_start('action_tester_taille_error_handler'); |
| 119 | 119 | filtrer('image_recadre', $image_source, $taille, $taille); |
| 120 | - $GLOBALS['redirect'] = generer_url_action('tester_taille', "i=$i&arg=$taille-" . $GLOBALS['taille_max']); |
|
| 120 | + $GLOBALS['redirect'] = generer_url_action('tester_taille', "i=$i&arg=$taille-".$GLOBALS['taille_max']); |
|
| 121 | 121 | |
| 122 | 122 | // si la valeur intermediaire a reussi, on teste la valeur maxi qui est peut etre sous estimee |
| 123 | 123 | // si $GLOBALS['taille_min']==0 (car on est au premier coup) |
| 124 | 124 | if ($GLOBALS['taille_min'] == 0) { |
| 125 | 125 | $taille = $GLOBALS['taille_max']; |
| 126 | 126 | filtrer('image_recadre', $image_source, $taille, $taille); |
| 127 | - $GLOBALS['redirect'] = generer_url_action('tester_taille', "i=$i&arg=$taille-" . $GLOBALS['taille_max']); |
|
| 127 | + $GLOBALS['redirect'] = generer_url_action('tester_taille', "i=$i&arg=$taille-".$GLOBALS['taille_max']); |
|
| 128 | 128 | } |
| 129 | 129 | ob_end_clean(); |
| 130 | 130 | |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | if ($change_session == 'oui') { |
| 60 | 60 | $session = charger_fonction('session', 'inc'); |
| 61 | 61 | $session(true); |
| 62 | - spip_log('statut 204 pour ' . $_SERVER['REQUEST_URI']); |
|
| 62 | + spip_log('statut 204 pour '.$_SERVER['REQUEST_URI']); |
|
| 63 | 63 | http_response_code(204); // No Content |
| 64 | 64 | return; |
| 65 | 65 | } |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | _T('info_connexion_refusee'), |
| 80 | 80 | _T('login_login_pass_incorrect'), |
| 81 | 81 | _T('login_retour_site'), |
| 82 | - 'url=' . rawurlencode($redirect), |
|
| 82 | + 'url='.rawurlencode($redirect), |
|
| 83 | 83 | _T('login_nouvelle_tentative'), |
| 84 | 84 | (strpos($url, (string) _DIR_RESTREINT_ABS) !== false) |
| 85 | 85 | ); |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | if ($fichier) { |
| 109 | 109 | $code = "quete_logo_file($doc, $qconnect)"; |
| 110 | 110 | } else { |
| 111 | - $code = "quete_logo_document($doc, " . ($lien ?: "''") . ", '$align', '$mode_logo', $coord_x, $coord_y, $qconnect)"; |
|
| 111 | + $code = "quete_logo_document($doc, ".($lien ?: "''").", '$align', '$mode_logo', $coord_x, $coord_y, $qconnect)"; |
|
| 112 | 112 | } |
| 113 | 113 | // (x=non-faux ? y : '') pour affecter x en retournant y |
| 114 | 114 | if ($p->descr['documents']) { |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | |
| 126 | 126 | // demande de reduction sur logo avec ecriture spip 2.1 : #LOGO_xxx{200, 0} |
| 127 | 127 | if ($coord_x or $coord_y) { |
| 128 | - $code = "filtrer('image_graver',filtrer('image_reduire'," . $code . ", '$coord_x', '$coord_y'))"; |
|
| 128 | + $code = "filtrer('image_graver',filtrer('image_reduire',".$code.", '$coord_x', '$coord_y'))"; |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | $p->code = $code; |
@@ -158,14 +158,12 @@ discard block |
||
| 158 | 158 | * Code compilé retournant le chemin du logo ou le code HTML du logo. |
| 159 | 159 | **/ |
| 160 | 160 | function logo_survol($id_objet, $_id_objet, $type, $align, $fichier, $_lien, $p, $suite) { |
| 161 | - $code = "quete_logo('$id_objet', '" . |
|
| 162 | - (($suite == '_SURVOL') ? 'off' : |
|
| 163 | - (($suite == '_NORMAL') ? 'on' : 'ON')) . |
|
| 164 | - "', $_id_objet," . |
|
| 161 | + $code = "quete_logo('$id_objet', '". |
|
| 162 | + (($suite == '_SURVOL') ? 'off' : (($suite == '_NORMAL') ? 'on' : 'ON')). |
|
| 163 | + "', $_id_objet,". |
|
| 165 | 164 | (($suite == '_RUBRIQUE') ? |
| 166 | - champ_sql('id_rubrique', $p) : |
|
| 167 | - (($type == 'rubrique') ? "quete_parent($_id_objet)" : "''")) . |
|
| 168 | - ', ' . intval($fichier) . ')'; |
|
| 165 | + champ_sql('id_rubrique', $p) : (($type == 'rubrique') ? "quete_parent($_id_objet)" : "''")). |
|
| 166 | + ', '.intval($fichier).')'; |
|
| 169 | 167 | |
| 170 | 168 | if ($fichier) { |
| 171 | 169 | return $code; |
@@ -173,5 +171,5 @@ discard block |
||
| 173 | 171 | |
| 174 | 172 | $align = preg_replace(',\W,', '', $align); |
| 175 | 173 | |
| 176 | - return "quete_html_logo($code, '$align', " . ($_lien ?: "''") . ')'; |
|
| 174 | + return "quete_html_logo($code, '$align', ".($_lien ?: "''").')'; |
|
| 177 | 175 | } |
@@ -73,5 +73,5 @@ |
||
| 73 | 73 | return ''; |
| 74 | 74 | } |
| 75 | 75 | |
| 76 | - return generer_url_action('logout', 'logout=public&url=' . rawurlencode($cible ?: self('&'))); |
|
| 76 | + return generer_url_action('logout', 'logout=public&url='.rawurlencode($cible ?: self('&'))); |
|
| 77 | 77 | } |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | $type .= ($struct->type_requete ?: $struct->table_optionnelle); |
| 30 | 30 | |
| 31 | 31 | if ($struct->jointures_explicites) { |
| 32 | - $type .= ' ' . $struct->jointures_explicites; |
|
| 32 | + $type .= ' '.$struct->jointures_explicites; |
|
| 33 | 33 | } |
| 34 | 34 | if ($struct->table_optionnelle) { |
| 35 | 35 | $type .= '?'; |
@@ -38,11 +38,11 @@ discard block |
||
| 38 | 38 | |
| 39 | 39 | $crit = $struct->param; |
| 40 | 40 | if ($crit and !is_array($crit[0])) { |
| 41 | - $type = strtolower($type) . array_shift($crit); |
|
| 41 | + $type = strtolower($type).array_shift($crit); |
|
| 42 | 42 | } |
| 43 | 43 | $crit = decompiler_criteres($struct, $fmt, $prof); |
| 44 | 44 | |
| 45 | - $f = 'format_boucle_' . $fmt; |
|
| 45 | + $f = 'format_boucle_'.$fmt; |
|
| 46 | 46 | |
| 47 | 47 | return $f($preaff, $avant, $nom, $type, $crit, $milieu, $apres, $altern, $postaff, $prof); |
| 48 | 48 | } |
@@ -55,21 +55,20 @@ discard block |
||
| 55 | 55 | $res[] = decompiler_($v, $fmt, $prof); |
| 56 | 56 | } |
| 57 | 57 | } |
| 58 | - $file = is_string($struct->texte) ? $struct->texte : |
|
| 59 | - decompiler_($struct->texte, $fmt, $prof); |
|
| 60 | - $f = 'format_inclure_' . $fmt; |
|
| 58 | + $file = is_string($struct->texte) ? $struct->texte : decompiler_($struct->texte, $fmt, $prof); |
|
| 59 | + $f = 'format_inclure_'.$fmt; |
|
| 61 | 60 | |
| 62 | 61 | return $f($file, $res, $prof); |
| 63 | 62 | } |
| 64 | 63 | |
| 65 | 64 | function decompiler_texte($struct, $fmt = '', $prof = 0) { |
| 66 | - $f = 'format_texte_' . $fmt; |
|
| 65 | + $f = 'format_texte_'.$fmt; |
|
| 67 | 66 | |
| 68 | 67 | return strlen($struct->texte) ? $f($struct->texte, $prof) : ''; |
| 69 | 68 | } |
| 70 | 69 | |
| 71 | 70 | function decompiler_polyglotte($struct, $fmt = '', $prof = 0) { |
| 72 | - $f = 'format_polyglotte_' . $fmt; |
|
| 71 | + $f = 'format_polyglotte_'.$fmt; |
|
| 73 | 72 | |
| 74 | 73 | return $f($struct->traductions, $prof); |
| 75 | 74 | } |
@@ -82,7 +81,7 @@ discard block |
||
| 82 | 81 | |
| 83 | 82 | $filtres = decompiler_liste($struct->param, $fmt, $prof); |
| 84 | 83 | |
| 85 | - $f = 'format_idiome_' . $fmt; |
|
| 84 | + $f = 'format_idiome_'.$fmt; |
|
| 86 | 85 | |
| 87 | 86 | return $f($struct->nom_champ, $struct->module, $args, $filtres, $prof); |
| 88 | 87 | } |
@@ -97,7 +96,7 @@ discard block |
||
| 97 | 96 | } |
| 98 | 97 | $filtres = decompiler_liste($p, $fmt, $prof); |
| 99 | 98 | } |
| 100 | - $f = 'format_champ_' . $fmt; |
|
| 99 | + $f = 'format_champ_'.$fmt; |
|
| 101 | 100 | |
| 102 | 101 | return $f($struct->nom_champ, $struct->nom_boucle, $struct->etoile, $avant, $apres, $args, $filtres, $prof); |
| 103 | 102 | } |
@@ -106,7 +105,7 @@ discard block |
||
| 106 | 105 | if (!is_array($sources)) { |
| 107 | 106 | return ''; |
| 108 | 107 | } |
| 109 | - $f = 'format_liste_' . $fmt; |
|
| 108 | + $f = 'format_liste_'.$fmt; |
|
| 110 | 109 | $res = ''; |
| 111 | 110 | foreach ($sources as $arg) { |
| 112 | 111 | if (!is_array($arg)) { |
@@ -123,7 +122,7 @@ discard block |
||
| 123 | 122 | and (strlen($v[0]->apres) == 1) |
| 124 | 123 | and $v[0]->apres == $v[0]->avant |
| 125 | 124 | ) { |
| 126 | - $args[] = $v[0]->avant . $v[0]->texte . $v[0]->apres; |
|
| 125 | + $args[] = $v[0]->avant.$v[0]->texte.$v[0]->apres; |
|
| 127 | 126 | } else { |
| 128 | 127 | $args[] = decompiler_($v, $fmt, 0 - $prof); |
| 129 | 128 | } |
@@ -146,7 +145,7 @@ discard block |
||
| 146 | 145 | return ''; |
| 147 | 146 | } |
| 148 | 147 | $res = ''; |
| 149 | - $f = 'format_critere_' . $fmt; |
|
| 148 | + $f = 'format_critere_'.$fmt; |
|
| 150 | 149 | foreach ($sources as $crit) { |
| 151 | 150 | if (!is_array($crit)) { |
| 152 | 151 | continue; |
@@ -159,13 +158,13 @@ discard block |
||
| 159 | 158 | and $v[0]->type == 'texte' |
| 160 | 159 | and $v[0]->apres |
| 161 | 160 | ) { |
| 162 | - $args[] = [['texte', ($v[0]->apres . $v[0]->texte . $v[0]->apres)]]; |
|
| 161 | + $args[] = [['texte', ($v[0]->apres.$v[0]->texte.$v[0]->apres)]]; |
|
| 163 | 162 | } else { |
| 164 | 163 | $res2 = []; |
| 165 | 164 | foreach ($v as $k => $p) { |
| 166 | 165 | if ( |
| 167 | 166 | isset($p->type) |
| 168 | - and function_exists($d = 'decompiler_' . $p->type) |
|
| 167 | + and function_exists($d = 'decompiler_'.$p->type) |
|
| 169 | 168 | ) { |
| 170 | 169 | $r = $d($p, $fmt, (0 - $prof), @$v[$k + 1]); |
| 171 | 170 | $res2[] = [$p->type, $r]; |
@@ -193,7 +192,7 @@ discard block |
||
| 193 | 192 | if (!isset($p->type)) { |
| 194 | 193 | continue; |
| 195 | 194 | } #?????? |
| 196 | - $d = 'decompiler_' . $p->type; |
|
| 195 | + $d = 'decompiler_'.$p->type; |
|
| 197 | 196 | $next = $liste[$k + 1] ?? false; |
| 198 | 197 | // Forcer le champ etendu si son source (pas les reecritures) |
| 199 | 198 | // contenait des args et s'il est suivi d'espaces, |
@@ -218,16 +217,16 @@ discard block |
||
| 218 | 217 | } |
| 219 | 218 | $contenu[] = [$d($p, $fmt, $prof2), $p->type]; |
| 220 | 219 | } |
| 221 | - $f = 'format_suite_' . $fmt; |
|
| 220 | + $f = 'format_suite_'.$fmt; |
|
| 222 | 221 | |
| 223 | 222 | return $f($contenu); |
| 224 | 223 | } |
| 225 | 224 | |
| 226 | 225 | function public_decompiler($liste, $fmt = '', $prof = 0, $quoi = '') { |
| 227 | - if (!include_spip('public/format_' . $fmt)) { |
|
| 226 | + if (!include_spip('public/format_'.$fmt)) { |
|
| 228 | 227 | return "'$fmt'?"; |
| 229 | 228 | } |
| 230 | - $f = 'decompiler_' . $quoi; |
|
| 229 | + $f = 'decompiler_'.$quoi; |
|
| 231 | 230 | |
| 232 | 231 | return $f($liste, $fmt, $prof); |
| 233 | 232 | } |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | $GLOBALS['debug_objets']['courant'] = $nom; |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | - $phpfile = sous_repertoire(_DIR_SKELS, '', false, true) . $nom . '.php'; |
|
| 59 | + $phpfile = sous_repertoire(_DIR_SKELS, '', false, true).$nom.'.php'; |
|
| 60 | 60 | |
| 61 | 61 | // si squelette est deja compile et perenne, le charger |
| 62 | 62 | if (!squelette_obsolete($phpfile, $source)) { |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | #} |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - if (file_exists($lib = $squelette . '_fonctions' . '.php')) { |
|
| 72 | + if (file_exists($lib = $squelette.'_fonctions'.'.php')) { |
|
| 73 | 73 | include_once $lib; |
| 74 | 74 | } |
| 75 | 75 | |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | eval("return true; $f ;"); |
| 98 | 98 | } catch (\ParseError $e) { |
| 99 | 99 | // Code syntaxiquement faux (critere etc mal programme') |
| 100 | - $msg = _T('zbug_erreur_compilation') . ' | Line ' . $e->getLine() . ' : ' . $e->getMessage(); |
|
| 100 | + $msg = _T('zbug_erreur_compilation').' | Line '.$e->getLine().' : '.$e->getMessage(); |
|
| 101 | 101 | erreur_squelette($msg, $boucle); |
| 102 | 102 | // continuer pour trouver d'autres fautes eventuelles |
| 103 | 103 | // mais prevenir que c'est mort |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | |
| 126 | 126 | if (defined('_VAR_MODE') and _VAR_MODE == 'debug') { |
| 127 | 127 | // Tracer ce qui vient d'etre compile |
| 128 | - $GLOBALS['debug_objets']['code'][$nom . 'tout'] = $code; |
|
| 128 | + $GLOBALS['debug_objets']['code'][$nom.'tout'] = $code; |
|
| 129 | 129 | |
| 130 | 130 | // si c'est ce que demande le debusqueur, lui passer la main |
| 131 | 131 | if ( |
@@ -149,13 +149,13 @@ discard block |
||
| 149 | 149 | $code = " |
| 150 | 150 | /* |
| 151 | 151 | * Squelette : $sourcefile |
| 152 | - * Date : " . gmdate('D, d M Y H:i:s', @filemtime($sourcefile)) . ' GMT |
|
| 153 | - * Compile : ' . gmdate('D, d M Y H:i:s', time()) . ' GMT |
|
| 154 | - * ' . (!$boucles ? 'Pas de boucle' : ('Boucles : ' . $noms)) . ' |
|
| 152 | + * Date : ".gmdate('D, d M Y H:i:s', @filemtime($sourcefile)).' GMT |
|
| 153 | + * Compile : ' . gmdate('D, d M Y H:i:s', time()).' GMT |
|
| 154 | + * ' . (!$boucles ? 'Pas de boucle' : ('Boucles : '.$noms)).' |
|
| 155 | 155 | */ '; |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | - $code = '<' . "?php\n" . $code . join('', $boucles) . "\n?" . '>'; |
|
| 158 | + $code = '<'."?php\n".$code.join('', $boucles)."\n?".'>'; |
|
| 159 | 159 | if (!defined('_VAR_NOCACHE') or !_VAR_NOCACHE) { |
| 160 | 160 | ecrire_fichier($phpfile, $code); |
| 161 | 161 | } |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | $j = join('-', array_map('ucwords', explode('-', strtolower($r[2])))); |
| 220 | 220 | |
| 221 | 221 | if ($j == 'X-Spip-Filtre' and isset($headers[$j])) { |
| 222 | - $headers[$j] .= '|' . $r[3]; |
|
| 222 | + $headers[$j] .= '|'.$r[3]; |
|
| 223 | 223 | } else { |
| 224 | 224 | $headers[$j] = $r[3]; |
| 225 | 225 | } |
@@ -227,10 +227,10 @@ discard block |
||
| 227 | 227 | } |
| 228 | 228 | // S'agit-il d'un resultat constant ou contenant du code php |
| 229 | 229 | $process_ins = ( |
| 230 | - strpos($corps, '<' . '?') === false |
|
| 230 | + strpos($corps, '<'.'?') === false |
|
| 231 | 231 | or |
| 232 | - (strpos($corps, '<' . '?xml') !== false and |
|
| 233 | - strpos(str_replace('<' . '?xml', '', $corps), '<' . '?') === false) |
|
| 232 | + (strpos($corps, '<'.'?xml') !== false and |
|
| 233 | + strpos(str_replace('<'.'?xml', '', $corps), '<'.'?') === false) |
|
| 234 | 234 | ) |
| 235 | 235 | ? 'html' |
| 236 | 236 | : 'php'; |
@@ -259,10 +259,10 @@ discard block |
||
| 259 | 259 | |
| 260 | 260 | if ($process_ins == 'html') { |
| 261 | 261 | $skel['process_ins'] = ( |
| 262 | - strpos($corps, '<' . '?') === false |
|
| 262 | + strpos($corps, '<'.'?') === false |
|
| 263 | 263 | or |
| 264 | - (strpos($corps, '<' . '?xml') !== false and |
|
| 265 | - strpos(str_replace('<' . '?xml', '', $corps), '<' . '?') === false) |
|
| 264 | + (strpos($corps, '<'.'?xml') !== false and |
|
| 265 | + strpos(str_replace('<'.'?xml', '', $corps), '<'.'?') === false) |
|
| 266 | 266 | ) |
| 267 | 267 | ? 'html' |
| 268 | 268 | : 'php'; |
@@ -280,7 +280,7 @@ discard block |
||
| 280 | 280 | // |
| 281 | 281 | |
| 282 | 282 | /** Code PHP pour inclure une balise dynamique à l'exécution d'une page */ |
| 283 | -define('CODE_INCLURE_BALISE', '<' . '?php |
|
| 283 | +define('CODE_INCLURE_BALISE', '<'.'?php |
|
| 284 | 284 | include_once("%s"); |
| 285 | 285 | if ($lang_select = "%s") $lang_select = lang_select($lang_select); |
| 286 | 286 | inserer_balise_dynamique(balise_%s_dyn(%s), array(%s)); |
@@ -311,7 +311,7 @@ discard block |
||
| 311 | 311 | // pas de lien symbolique sous Windows |
| 312 | 312 | and !(stristr(PHP_OS, 'WIN') and strpos($file, ':') !== false) |
| 313 | 313 | ) { |
| 314 | - $file = './" . _DIR_RACINE . "' . $file; |
|
| 314 | + $file = './" . _DIR_RACINE . "'.$file; |
|
| 315 | 315 | } |
| 316 | 316 | |
| 317 | 317 | $lang = $context_compil[4]; |
@@ -321,7 +321,7 @@ discard block |
||
| 321 | 321 | |
| 322 | 322 | $args = array_map('argumenter_squelette', $args); |
| 323 | 323 | if (!empty($context_compil['appel_php_depuis_modele'])) { |
| 324 | - $args[0] = 'arguments_balise_dyn_depuis_modele(' . $args[0] . ')'; |
|
| 324 | + $args[0] = 'arguments_balise_dyn_depuis_modele('.$args[0].')'; |
|
| 325 | 325 | } |
| 326 | 326 | $args = join(', ', $args); |
| 327 | 327 | |
@@ -355,14 +355,14 @@ discard block |
||
| 355 | 355 | if (is_object($v)) { |
| 356 | 356 | return var_export($v, true); |
| 357 | 357 | } elseif (!is_array($v)) { |
| 358 | - return "'" . texte_script((string) $v) . "'"; |
|
| 358 | + return "'".texte_script((string) $v)."'"; |
|
| 359 | 359 | } else { |
| 360 | 360 | $out = []; |
| 361 | 361 | foreach ($v as $k => $val) { |
| 362 | - $out [] = argumenter_squelette($k) . '=>' . argumenter_squelette($val); |
|
| 362 | + $out [] = argumenter_squelette($k).'=>'.argumenter_squelette($val); |
|
| 363 | 363 | } |
| 364 | 364 | |
| 365 | - return 'array(' . join(', ', $out) . ')'; |
|
| 365 | + return 'array('.join(', ', $out).')'; |
|
| 366 | 366 | } |
| 367 | 367 | } |
| 368 | 368 | |
@@ -440,7 +440,7 @@ discard block |
||
| 440 | 440 | } |
| 441 | 441 | |
| 442 | 442 | // Y a-t-il une fonction de traitement des arguments ? |
| 443 | - $f = 'balise_' . $nom_balise . '_stat'; |
|
| 443 | + $f = 'balise_'.$nom_balise.'_stat'; |
|
| 444 | 444 | |
| 445 | 445 | $r = !function_exists($f) ? $args : $f($args, $context_compil); |
| 446 | 446 | |
@@ -450,18 +450,18 @@ discard block |
||
| 450 | 450 | |
| 451 | 451 | // verifier que la fonction dyn est la, |
| 452 | 452 | // sinon se replier sur la generique si elle existe |
| 453 | - if (!function_exists('balise_' . $nom_balise . '_dyn')) { |
|
| 453 | + if (!function_exists('balise_'.$nom_balise.'_dyn')) { |
|
| 454 | 454 | if ( |
| 455 | 455 | $balise_generique = chercher_balise_generique($nom) |
| 456 | 456 | and $nom_balise_generique = $balise_generique['nom_generique'] |
| 457 | - and $file = include_spip('balise/' . strtolower($nom_balise_generique)) |
|
| 458 | - and function_exists('balise_' . $nom_balise_generique . '_dyn') |
|
| 457 | + and $file = include_spip('balise/'.strtolower($nom_balise_generique)) |
|
| 458 | + and function_exists('balise_'.$nom_balise_generique.'_dyn') |
|
| 459 | 459 | ) { |
| 460 | 460 | // et lui injecter en premier arg le nom de la balise |
| 461 | 461 | array_unshift($r, $nom); |
| 462 | 462 | $nom_balise = $nom_balise_generique; |
| 463 | 463 | if (!_DIR_RESTREINT) { |
| 464 | - $file = _DIR_RESTREINT_ABS . $file; |
|
| 464 | + $file = _DIR_RESTREINT_ABS.$file; |
|
| 465 | 465 | } |
| 466 | 466 | } else { |
| 467 | 467 | $msg = ['zbug_balise_inexistante', ['from' => 'CVT', 'balise' => $nom]]; |
@@ -563,7 +563,7 @@ discard block |
||
| 563 | 563 | $n = ''; |
| 564 | 564 | foreach (explode(',', $liste) as $val) { |
| 565 | 565 | if ($a = intval($val) and $val === strval($a)) { |
| 566 | - $n .= ',' . $val; |
|
| 566 | + $n .= ','.$val; |
|
| 567 | 567 | } |
| 568 | 568 | } |
| 569 | 569 | if (strlen($n)) { |
@@ -742,8 +742,8 @@ discard block |
||
| 742 | 742 | // on construit le where une fois, puis on ajoute les where complentaires si besoin, et on reconstruit le where en fonction |
| 743 | 743 | $i = 0; |
| 744 | 744 | do { |
| 745 | - $where[$k] = remplace_sous_requete($w, '(' . calculer_select( |
|
| 746 | - [$sous[1] . ' AS id'], |
|
| 745 | + $where[$k] = remplace_sous_requete($w, '('.calculer_select( |
|
| 746 | + [$sous[1].' AS id'], |
|
| 747 | 747 | $from, |
| 748 | 748 | $from_type, |
| 749 | 749 | $wheresub, |
@@ -756,7 +756,7 @@ discard block |
||
| 756 | 756 | $id, |
| 757 | 757 | $serveur, |
| 758 | 758 | false |
| 759 | - ) . ')'); |
|
| 759 | + ).')'); |
|
| 760 | 760 | if (!$i) { |
| 761 | 761 | $i = 1; |
| 762 | 762 | $wherestring = calculer_where_to_string($where[$k]); |
@@ -776,7 +776,7 @@ discard block |
||
| 776 | 776 | if ($sous[0] == 'SUBSELECT') { |
| 777 | 777 | // c'est une sous requete explicite sous la forme identique a sql_select : (SUBSELECT,$select,$from,$where,$groupby,$orderby,$limit,$having) |
| 778 | 778 | array_push($where_simples, $sous[3]); // est-ce utile dans ce cas ? |
| 779 | - $where[$k] = remplace_sous_requete($w, '(' . calculer_select( |
|
| 779 | + $where[$k] = remplace_sous_requete($w, '('.calculer_select( |
|
| 780 | 780 | $sous[1], # select |
| 781 | 781 | $sous[2], #from |
| 782 | 782 | [], #from_type |
@@ -791,7 +791,7 @@ discard block |
||
| 791 | 791 | $id, |
| 792 | 792 | $serveur, |
| 793 | 793 | false |
| 794 | - ) . ')'); |
|
| 794 | + ).')'); |
|
| 795 | 795 | } |
| 796 | 796 | array_pop($where_simples); |
| 797 | 797 | } |
@@ -854,15 +854,15 @@ discard block |
||
| 854 | 854 | // sans recours a preg_match |
| 855 | 855 | // un implode(' ',..) est fait dans reinjecte_joint un peu plus bas |
| 856 | 856 | $afrom[$t][$cle] = [ |
| 857 | - "\n" . |
|
| 858 | - ($from_type[$cle] ?? 'INNER') . ' JOIN', |
|
| 857 | + "\n". |
|
| 858 | + ($from_type[$cle] ?? 'INNER').' JOIN', |
|
| 859 | 859 | $from[$cle], |
| 860 | 860 | "AS $cle", |
| 861 | 861 | 'ON (', |
| 862 | 862 | "$cle.$c", |
| 863 | 863 | '=', |
| 864 | 864 | "$t.$carr", |
| 865 | - ($and ? 'AND ' . $and : '') . |
|
| 865 | + ($and ? 'AND '.$and : ''). |
|
| 866 | 866 | ')' |
| 867 | 867 | ]; |
| 868 | 868 | if (isset($afrom[$cle])) { |
@@ -900,7 +900,7 @@ discard block |
||
| 900 | 900 | $t = key($from); |
| 901 | 901 | $c = current($from); |
| 902 | 902 | reset($from); |
| 903 | - $e = '/\b(' . "$t\\." . join('|' . $t . '\.', $equiv) . ')\b/'; |
|
| 903 | + $e = '/\b('."$t\\.".join('|'.$t.'\.', $equiv).')\b/'; |
|
| 904 | 904 | if ( |
| 905 | 905 | !(strpos($t, ' ') or // jointure des le depart cf boucle_doc |
| 906 | 906 | calculer_jointnul($t, $select, $e) or |
@@ -918,7 +918,7 @@ discard block |
||
| 918 | 918 | unset($afrom[$t][$nt]); |
| 919 | 919 | $afrom[$nt] = $afrom[$t]; |
| 920 | 920 | unset($afrom[$t]); |
| 921 | - $e = '/\b' . preg_quote($nfrom[6]) . '\b/'; |
|
| 921 | + $e = '/\b'.preg_quote($nfrom[6]).'\b/'; |
|
| 922 | 922 | $t = $nfrom[4]; |
| 923 | 923 | $alias = ''; |
| 924 | 924 | // verifier que les deux cles sont homonymes, sinon installer un alias dans le select |
@@ -929,14 +929,14 @@ discard block |
||
| 929 | 929 | if ($newcle != $oldcle) { |
| 930 | 930 | // si l'ancienne cle etait deja dans le select avec un AS |
| 931 | 931 | // reprendre simplement ce AS |
| 932 | - $as = '/\b' . preg_quote($nfrom[6]) . '\s+(AS\s+\w+)\b/'; |
|
| 932 | + $as = '/\b'.preg_quote($nfrom[6]).'\s+(AS\s+\w+)\b/'; |
|
| 933 | 933 | if (preg_match($as, implode(',', $select), $m)) { |
| 934 | 934 | $alias = ''; |
| 935 | 935 | } else { |
| 936 | - $alias = ', ' . $nfrom[4] . " AS $oldcle"; |
|
| 936 | + $alias = ', '.$nfrom[4]." AS $oldcle"; |
|
| 937 | 937 | } |
| 938 | 938 | } |
| 939 | - $select = remplacer_jointnul($t . $alias, $select, $e); |
|
| 939 | + $select = remplacer_jointnul($t.$alias, $select, $e); |
|
| 940 | 940 | $join = remplacer_jointnul($t, $join, $e); |
| 941 | 941 | $where = remplacer_jointnul($t, $where, $e); |
| 942 | 942 | $having = remplacer_jointnul($t, $having, $e); |
@@ -986,9 +986,9 @@ discard block |
||
| 986 | 986 | } else { |
| 987 | 987 | $exp = ''; |
| 988 | 988 | if (strtoupper($join) === 'AND') { |
| 989 | - return $exp . join(" $join ", array_map('calculer_where_to_string', $v)); |
|
| 989 | + return $exp.join(" $join ", array_map('calculer_where_to_string', $v)); |
|
| 990 | 990 | } else { |
| 991 | - return $exp . join($join, $v); |
|
| 991 | + return $exp.join($join, $v); |
|
| 992 | 992 | } |
| 993 | 993 | } |
| 994 | 994 | } |
@@ -1054,6 +1054,6 @@ discard block |
||
| 1054 | 1054 | } |
| 1055 | 1055 | |
| 1056 | 1056 | return $mime_type |
| 1057 | - . (!$connect ? '' : preg_replace('/\W/', '_', $connect)) . '_' |
|
| 1058 | - . md5($GLOBALS['spip_version_code'] . ' * ' . $skel . (isset($GLOBALS['marqueur_skel']) ? '*' . $GLOBALS['marqueur_skel'] : '')); |
|
| 1057 | + . (!$connect ? '' : preg_replace('/\W/', '_', $connect)).'_' |
|
| 1058 | + . md5($GLOBALS['spip_version_code'].' * '.$skel.(isset($GLOBALS['marqueur_skel']) ? '*'.$GLOBALS['marqueur_skel'] : '')); |
|
| 1059 | 1059 | } |
@@ -53,8 +53,7 @@ discard block |
||
| 53 | 53 | // (pas glop) |
| 54 | 54 | try { |
| 55 | 55 | switch (is_countable($a) ? count($a) : 0) { |
| 56 | - case 0: |
|
| 57 | - $iter = new $iterateur(); |
|
| 56 | + case 0 : $iter = new $iterateur(); |
|
| 58 | 57 | break; |
| 59 | 58 | case 1: |
| 60 | 59 | $iter = new $iterateur($a[0]); |
@@ -79,10 +78,10 @@ discard block |
||
| 79 | 78 | // chercher la classe d'iterateur |
| 80 | 79 | // IterateurXXX |
| 81 | 80 | // definie dans le fichier iterateurs/xxx.php |
| 82 | - $class = 'Iterateur' . $iterateur; |
|
| 81 | + $class = 'Iterateur'.$iterateur; |
|
| 83 | 82 | if (!class_exists($class)) { |
| 84 | 83 | if ( |
| 85 | - !include_spip('iterateur/' . strtolower($iterateur)) |
|
| 84 | + !include_spip('iterateur/'.strtolower($iterateur)) |
|
| 86 | 85 | or !class_exists($class) |
| 87 | 86 | ) { |
| 88 | 87 | die("Iterateur $iterateur non trouvé"); |
@@ -210,7 +209,7 @@ discard block |
||
| 210 | 209 | return $this->iter->$nom(); |
| 211 | 210 | } catch (Exception $e) { |
| 212 | 211 | // #GETCHILDREN sur un fichier de DirectoryIterator ... |
| 213 | - spip_log("Methode $nom en echec sur " . get_class($this->iter)); |
|
| 212 | + spip_log("Methode $nom en echec sur ".get_class($this->iter)); |
|
| 214 | 213 | spip_log("Cela peut être normal : retour d'une ligne de resultat ne pouvant pas calculer cette methode"); |
| 215 | 214 | |
| 216 | 215 | return ''; |
@@ -259,7 +258,7 @@ discard block |
||
| 259 | 258 | // Creer la fonction de filtrage sur $this |
| 260 | 259 | if ($this->filtre) { |
| 261 | 260 | if ($filtres = $this->assembler_filtres($this->filtre)) { |
| 262 | - $filtres = 'return ' . $filtres . ';'; |
|
| 261 | + $filtres = 'return '.$filtres.';'; |
|
| 263 | 262 | $this->func_filtre = fn() => eval($filtres); |
| 264 | 263 | } |
| 265 | 264 | else { |
@@ -294,7 +293,7 @@ discard block |
||
| 294 | 293 | return null; |
| 295 | 294 | } |
| 296 | 295 | |
| 297 | - return '(' . implode(") $operateur (", $filtres_string) . ')'; |
|
| 296 | + return '('.implode(") $operateur (", $filtres_string).')'; |
|
| 298 | 297 | } |
| 299 | 298 | |
| 300 | 299 | /** |
@@ -375,7 +374,7 @@ discard block |
||
| 375 | 374 | return $this->composer_filtre($v[1], $v[0], $v[2]); |
| 376 | 375 | } |
| 377 | 376 | |
| 378 | - return null; // sera ignore |
|
| 377 | + return null; // sera ignore |
|
| 379 | 378 | } |
| 380 | 379 | |
| 381 | 380 | /** |
@@ -401,28 +400,28 @@ discard block |
||
| 401 | 400 | # if (!in_array($cle, array('cle', 'valeur'))) |
| 402 | 401 | # return; |
| 403 | 402 | |
| 404 | - $a = '$this->get_select(\'' . $cle . '\')'; |
|
| 403 | + $a = '$this->get_select(\''.$cle.'\')'; |
|
| 405 | 404 | |
| 406 | 405 | $filtre = ''; |
| 407 | 406 | |
| 408 | 407 | if ($op == 'REGEXP') { |
| 409 | - $filtre = 'filtrer("match", ' . $a . ', ' . str_replace('\"', '"', $valeur) . ')'; |
|
| 408 | + $filtre = 'filtrer("match", '.$a.', '.str_replace('\"', '"', $valeur).')'; |
|
| 410 | 409 | $op = ''; |
| 411 | 410 | } else { |
| 412 | 411 | if ($op == 'LIKE') { |
| 413 | 412 | $valeur = str_replace(['\"', '_', '%'], ['"', '.', '.*'], preg_quote($valeur)); |
| 414 | - $filtre = 'filtrer("match", ' . $a . ', ' . $valeur . ')'; |
|
| 413 | + $filtre = 'filtrer("match", '.$a.', '.$valeur.')'; |
|
| 415 | 414 | $op = ''; |
| 416 | 415 | } else { |
| 417 | 416 | if ($op == '=') { |
| 418 | 417 | $op = '=='; |
| 419 | 418 | } else { |
| 420 | 419 | if ($op == 'IN') { |
| 421 | - $filtre = 'in_array(' . $a . ', array' . $valeur . ')'; |
|
| 420 | + $filtre = 'in_array('.$a.', array'.$valeur.')'; |
|
| 422 | 421 | $op = ''; |
| 423 | 422 | } else { |
| 424 | 423 | if (!in_array($op, ['<', '<=', '>', '>='])) { |
| 425 | - spip_log('operateur non reconnu ' . $op); // [todo] mettre une erreur de squelette |
|
| 424 | + spip_log('operateur non reconnu '.$op); // [todo] mettre une erreur de squelette |
|
| 426 | 425 | $op = ''; |
| 427 | 426 | } |
| 428 | 427 | } |
@@ -431,7 +430,7 @@ discard block |
||
| 431 | 430 | } |
| 432 | 431 | |
| 433 | 432 | if ($op) { |
| 434 | - $filtre = $a . $op . str_replace('\"', '"', $valeur); |
|
| 433 | + $filtre = $a.$op.str_replace('\"', '"', $valeur); |
|
| 435 | 434 | } |
| 436 | 435 | |
| 437 | 436 | if ($not) { |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | return sql_getfetsel( |
| 37 | 37 | 'virtuel', |
| 38 | 38 | 'spip_articles', |
| 39 | - ['id_article=' . intval($id_article), "statut='publie'"], |
|
| 39 | + ['id_article='.intval($id_article), "statut='publie'"], |
|
| 40 | 40 | '', |
| 41 | 41 | '', |
| 42 | 42 | '', |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | $cache_quete[$connect][$table][$id] = sql_fetsel( |
| 82 | 82 | $cache_quete[$connect][$table]['_select'], |
| 83 | 83 | $table, |
| 84 | - $cache_quete[$connect][$table]['_id'] . '=' . intval($id), |
|
| 84 | + $cache_quete[$connect][$table]['_id'].'='.intval($id), |
|
| 85 | 85 | '', |
| 86 | 86 | '', |
| 87 | 87 | '', |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | return |
| 174 | 174 | (isset($GLOBALS['meta']['date_prochain_postdate']) |
| 175 | 175 | and $GLOBALS['meta']['date_prochain_postdate'] > time()) |
| 176 | - ? "$champ_date<" . sql_quote(date('Y-m-d H:i:s', $GLOBALS['meta']['date_prochain_postdate']), $serveur) |
|
| 176 | + ? "$champ_date<".sql_quote(date('Y-m-d H:i:s', $GLOBALS['meta']['date_prochain_postdate']), $serveur) |
|
| 177 | 177 | : '1=1'; |
| 178 | 178 | } |
| 179 | 179 | |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | and $id_table = reset($objet) |
| 233 | 233 | and $objet = objet_type($id_table) |
| 234 | 234 | ) { |
| 235 | - $w = "$mstatut<>" . sql_quote($v); |
|
| 235 | + $w = "$mstatut<>".sql_quote($v); |
|
| 236 | 236 | |
| 237 | 237 | // retrouver l’id_auteur qui a filé un lien de prévisu éventuellement, |
| 238 | 238 | // sinon l’auteur en session |
@@ -246,22 +246,22 @@ discard block |
||
| 246 | 246 | } |
| 247 | 247 | |
| 248 | 248 | // dans ce cas (admin en general), pas de filtrage sur ce statut |
| 249 | - if (!autoriser('previsualiser' . $v, $objet, '', $id_auteur)) { |
|
| 249 | + if (!autoriser('previsualiser'.$v, $objet, '', $id_auteur)) { |
|
| 250 | 250 | // si pas d'auteur identifie pas de sous-requete car pas d'article qui matche |
| 251 | 251 | if (!$id_auteur) { |
| 252 | 252 | $where[] = $w; |
| 253 | 253 | } else { |
| 254 | 254 | $primary = id_table_objet($objet); |
| 255 | - $where[] = "($w OR $id_table.$primary IN (" . sql_get_select( |
|
| 255 | + $where[] = "($w OR $id_table.$primary IN (".sql_get_select( |
|
| 256 | 256 | 'ssss.id_objet', |
| 257 | 257 | 'spip_auteurs_liens AS ssss', |
| 258 | - 'ssss.objet=' . sql_quote($objet) . ' AND ssss.id_auteur=' . intval($id_auteur), |
|
| 258 | + 'ssss.objet='.sql_quote($objet).' AND ssss.id_auteur='.intval($id_auteur), |
|
| 259 | 259 | '', |
| 260 | 260 | '', |
| 261 | 261 | '', |
| 262 | 262 | '', |
| 263 | 263 | $serveur |
| 264 | - ) . '))'; |
|
| 264 | + ).'))'; |
|
| 265 | 265 | } |
| 266 | 266 | } |
| 267 | 267 | } // ignorer ce statut si on ne sait pas comment le filtrer |
@@ -299,7 +299,7 @@ discard block |
||
| 299 | 299 | * @return array|bool|null |
| 300 | 300 | */ |
| 301 | 301 | function quete_fichier($id_document, $serveur = '') { |
| 302 | - return sql_getfetsel('fichier', 'spip_documents', ('id_document=' . intval($id_document)), '', [], '', '', $serveur); |
|
| 302 | + return sql_getfetsel('fichier', 'spip_documents', ('id_document='.intval($id_document)), '', [], '', '', $serveur); |
|
| 303 | 303 | } |
| 304 | 304 | |
| 305 | 305 | /** |
@@ -310,7 +310,7 @@ discard block |
||
| 310 | 310 | * @return array|bool |
| 311 | 311 | */ |
| 312 | 312 | function quete_document($id_document, $serveur = '') { |
| 313 | - return sql_fetsel('*', 'spip_documents', ('id_document=' . intval($id_document)), '', [], '', '', $serveur); |
|
| 313 | + return sql_fetsel('*', 'spip_documents', ('id_document='.intval($id_document)), '', [], '', '', $serveur); |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | /** |
@@ -321,7 +321,7 @@ discard block |
||
| 321 | 321 | * @return array|bool|null |
| 322 | 322 | */ |
| 323 | 323 | function quete_meta($nom, $serveur) { |
| 324 | - return sql_getfetsel('valeur', 'spip_meta', 'nom=' . sql_quote($nom), '', '', '', '', $serveur); |
|
| 324 | + return sql_getfetsel('valeur', 'spip_meta', 'nom='.sql_quote($nom), '', '', '', '', $serveur); |
|
| 325 | 325 | } |
| 326 | 326 | |
| 327 | 327 | /** |
@@ -377,9 +377,9 @@ discard block |
||
| 377 | 377 | // qui permet de distinguer le changement de logo |
| 378 | 378 | // et placer un expire sur le dossier IMG/ |
| 379 | 379 | $res = [ |
| 380 | - $on['chemin'] . ($on['timestamp'] ? "?{$on['timestamp']}" : ''), |
|
| 381 | - ($off ? $off['chemin'] . ($off['timestamp'] ? "?{$off['timestamp']}" : '') : ''), |
|
| 382 | - (!$taille ? '' : (' ' . $taille[3])) |
|
| 380 | + $on['chemin'].($on['timestamp'] ? "?{$on['timestamp']}" : ''), |
|
| 381 | + ($off ? $off['chemin'].($off['timestamp'] ? "?{$off['timestamp']}" : '') : ''), |
|
| 382 | + (!$taille ? '' : (' '.$taille[3])) |
|
| 383 | 383 | ]; |
| 384 | 384 | $res['src'] = $res[0]; |
| 385 | 385 | $res['logo_on'] = $res[0]; |
@@ -476,7 +476,7 @@ discard block |
||
| 476 | 476 | if ( |
| 477 | 477 | strcmp($logo, _DIR_PLUGINS) == 0 |
| 478 | 478 | or strcmp($logo, _DIR_PLUGINS_DIST) == 0 |
| 479 | - or strcmp($logo, _DIR_RACINE . 'prive/') == 0 |
|
| 479 | + or strcmp($logo, _DIR_RACINE.'prive/') == 0 |
|
| 480 | 480 | ) { |
| 481 | 481 | return $logo; |
| 482 | 482 | } |
@@ -646,7 +646,7 @@ discard block |
||
| 646 | 646 | $exposer[$m][$type][$principal] = true; |
| 647 | 647 | if ($type == 'id_mot') { |
| 648 | 648 | if (!$parent) { |
| 649 | - $parent = sql_getfetsel('id_groupe', 'spip_mots', 'id_mot=' . intval($principal), '', '', '', '', $connect); |
|
| 649 | + $parent = sql_getfetsel('id_groupe', 'spip_mots', 'id_mot='.intval($principal), '', '', '', '', $connect); |
|
| 650 | 650 | } |
| 651 | 651 | if ($parent) { |
| 652 | 652 | $exposer[$m]['id_groupe'][$parent] = true; |