@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | * Pour plus de détails voir le fichier COPYING.txt ou l'aide en ligne. * |
| 11 | 11 | \***************************************************************************/ |
| 12 | 12 | |
| 13 | -require_once __DIR__ . '/../vendor/autoload.php'; |
|
| 13 | +require_once __DIR__.'/../vendor/autoload.php'; |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * Fichier d'exécution de l'interface privée |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | // Determiner l'action demandee |
| 31 | 31 | // |
| 32 | 32 | |
| 33 | -$exec = (string)_request('exec'); |
|
| 33 | +$exec = (string) _request('exec'); |
|
| 34 | 34 | $reinstall = (!is_null(_request('reinstall'))) ? _request('reinstall') : ($exec == 'install' ? 'oui' : null); |
| 35 | 35 | // |
| 36 | 36 | // Les scripts d'insallation n'authentifient pas, forcement, |
@@ -116,9 +116,9 @@ discard block |
||
| 116 | 116 | or (isset($GLOBALS['visiteur_session']) and $GLOBALS['visiteur_session']['statut'] == '0minirezo') |
| 117 | 117 | ) |
| 118 | 118 | ) { |
| 119 | - spip_log('Quand la meta admin vaut ' . |
|
| 120 | - $GLOBALS['meta']['admin'] . |
|
| 121 | - ' seul un admin peut se connecter et sans AJAX.' . |
|
| 119 | + spip_log('Quand la meta admin vaut '. |
|
| 120 | + $GLOBALS['meta']['admin']. |
|
| 121 | + ' seul un admin peut se connecter et sans AJAX.'. |
|
| 122 | 122 | ' En cas de probleme, detruire cette meta.'); |
| 123 | 123 | die(_T('info_travaux_texte')); |
| 124 | 124 | } |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | include_spip('base/abstract_sql'); |
| 64 | - $res = sql_select('statut, id_auteur, login, email, nom', 'spip_auteurs', 'email=' . sql_quote($desc['email'])); |
|
| 64 | + $res = sql_select('statut, id_auteur, login, email, nom', 'spip_auteurs', 'email='.sql_quote($desc['email'])); |
|
| 65 | 65 | // erreur ? |
| 66 | 66 | if (!$res) { |
| 67 | 67 | return _T('titre_probleme_technique'); |
@@ -217,11 +217,11 @@ discard block |
||
| 217 | 217 | |
| 218 | 218 | $login = $login_base; |
| 219 | 219 | |
| 220 | - for ($i = 1;; $i++) { |
|
| 220 | + for ($i = 1; ; $i++) { |
|
| 221 | 221 | if (!sql_countsel('spip_auteurs', "login='$login'")) { |
| 222 | 222 | return $login; |
| 223 | 223 | } |
| 224 | - $login = $login_base . $i; |
|
| 224 | + $login = $login_base.$i; |
|
| 225 | 225 | } |
| 226 | 226 | } |
| 227 | 227 | |
@@ -361,11 +361,11 @@ discard block |
||
| 361 | 361 | do { |
| 362 | 362 | // Un morceau du jeton est lisible en bdd pour éviter de devoir déchiffrer |
| 363 | 363 | // tous les jetons connus pour vérifier le jeton d’un auteur. |
| 364 | - $public = substr(creer_uniqid(), 0, 7) . '.'; |
|
| 365 | - $jeton = $public . creer_uniqid(); |
|
| 366 | - $jeton_chiffre_prefixe = $public . Chiffrement::chiffrer($jeton, SpipCles::secret_du_site()); |
|
| 367 | - sql_updateq('spip_auteurs', ['cookie_oubli' => $jeton_chiffre_prefixe], 'id_auteur=' . intval($id_auteur)); |
|
| 368 | - } while (sql_countsel('spip_auteurs', 'cookie_oubli=' . sql_quote($jeton_chiffre_prefixe, '', 'string')) > 1); |
|
| 364 | + $public = substr(creer_uniqid(), 0, 7).'.'; |
|
| 365 | + $jeton = $public.creer_uniqid(); |
|
| 366 | + $jeton_chiffre_prefixe = $public.Chiffrement::chiffrer($jeton, SpipCles::secret_du_site()); |
|
| 367 | + sql_updateq('spip_auteurs', ['cookie_oubli' => $jeton_chiffre_prefixe], 'id_auteur='.intval($id_auteur)); |
|
| 368 | + } while (sql_countsel('spip_auteurs', 'cookie_oubli='.sql_quote($jeton_chiffre_prefixe, '', 'string')) > 1); |
|
| 369 | 369 | |
| 370 | 370 | return $jeton; |
| 371 | 371 | } |
@@ -382,7 +382,7 @@ discard block |
||
| 382 | 382 | */ |
| 383 | 383 | function auteur_lire_jeton(int $id_auteur, bool $autoInit = false): ?string { |
| 384 | 384 | include_spip('base/abstract_sql'); |
| 385 | - $jeton_chiffre_prefixe = sql_getfetsel('cookie_oubli', 'spip_auteurs', 'id_auteur=' . $id_auteur); |
|
| 385 | + $jeton_chiffre_prefixe = sql_getfetsel('cookie_oubli', 'spip_auteurs', 'id_auteur='.$id_auteur); |
|
| 386 | 386 | if ($jeton_chiffre_prefixe) { |
| 387 | 387 | $jeton_chiffre = substr($jeton_chiffre_prefixe, 8); |
| 388 | 388 | $jeton = Chiffrement::dechiffrer($jeton_chiffre, SpipCles::secret_du_site()); |
@@ -412,7 +412,7 @@ discard block |
||
| 412 | 412 | $public = substr($jeton, 0, 8); |
| 413 | 413 | |
| 414 | 414 | // Les auteurs qui ont un jetons ressemblant |
| 415 | - $auteurs = sql_allfetsel('*', 'spip_auteurs', 'cookie_oubli LIKE ' . sql_quote($public . '%')); |
|
| 415 | + $auteurs = sql_allfetsel('*', 'spip_auteurs', 'cookie_oubli LIKE '.sql_quote($public.'%')); |
|
| 416 | 416 | foreach ($auteurs as $auteur) { |
| 417 | 417 | $jeton_chiffre = substr($auteur['cookie_oubli'], 8); |
| 418 | 418 | $_jeton = Chiffrement::dechiffrer($jeton_chiffre, SpipCles::secret_du_site()); |
@@ -431,5 +431,5 @@ discard block |
||
| 431 | 431 | */ |
| 432 | 432 | function auteur_effacer_jeton($id_auteur) { |
| 433 | 433 | include_spip('base/abstract_sql'); |
| 434 | - return sql_updateq('spip_auteurs', ['cookie_oubli' => ''], 'id_auteur=' . intval($id_auteur)); |
|
| 434 | + return sql_updateq('spip_auteurs', ['cookie_oubli' => ''], 'id_auteur='.intval($id_auteur)); |
|
| 435 | 435 | } |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | $this->serveur = strtolower($serveur); |
| 42 | 42 | |
| 43 | 43 | if (!($this->link = _sqlite_link($this->serveur)) && (!defined('_ECRIRE_INSTALL') || !_ECRIRE_INSTALL)) { |
| 44 | - spip_log('Aucune connexion sqlite (link)', 'sqlite.' . _LOG_ERREUR); |
|
| 44 | + spip_log('Aucune connexion sqlite (link)', 'sqlite.'._LOG_ERREUR); |
|
| 45 | 45 | |
| 46 | 46 | return false; |
| 47 | 47 | } |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | try { |
| 89 | 89 | $r = $this->link->query($query); |
| 90 | 90 | } catch (\PDOException $e) { |
| 91 | - spip_log('PDOException: ' . $e->getMessage(), 'sqlite.' . _LOG_DEBUG); |
|
| 91 | + spip_log('PDOException: '.$e->getMessage(), 'sqlite.'._LOG_DEBUG); |
|
| 92 | 92 | $r = false; |
| 93 | 93 | } |
| 94 | 94 | |
@@ -103,11 +103,11 @@ discard block |
||
| 103 | 103 | |
| 104 | 104 | // loger les warnings/erreurs eventuels de sqlite remontant dans PHP |
| 105 | 105 | if ($e and $e instanceof \PDOException) { |
| 106 | - $err = strip_tags($e->getMessage()) . ' in ' . $e->getFile() . ' line ' . $e->getLine(); |
|
| 107 | - spip_log("$err - " . $query, 'sqlite.' . _LOG_ERREUR); |
|
| 106 | + $err = strip_tags($e->getMessage()).' in '.$e->getFile().' line '.$e->getLine(); |
|
| 107 | + spip_log("$err - ".$query, 'sqlite.'._LOG_ERREUR); |
|
| 108 | 108 | } elseif ($err = (function_exists('error_get_last') ? error_get_last() : '') and $err != $last_error) { |
| 109 | - $err = strip_tags($err['message']) . ' in ' . $err['file'] . ' line ' . $err['line']; |
|
| 110 | - spip_log("$err - " . $query, 'sqlite.' . _LOG_ERREUR); |
|
| 109 | + $err = strip_tags($err['message']).' in '.$err['file'].' line '.$err['line']; |
|
| 110 | + spip_log("$err - ".$query, 'sqlite.'._LOG_ERREUR); |
|
| 111 | 111 | } else { |
| 112 | 112 | $err = ''; |
| 113 | 113 | } |
@@ -59,15 +59,15 @@ discard block |
||
| 59 | 59 | // Correction Create Database |
| 60 | 60 | // Create Database -> requete ignoree |
| 61 | 61 | if (strpos($this->query, 'CREATE DATABASE') === 0) { |
| 62 | - spip_log("Sqlite : requete non executee -> $this->query", 'sqlite.' . _LOG_AVERTISSEMENT); |
|
| 62 | + spip_log("Sqlite : requete non executee -> $this->query", 'sqlite.'._LOG_AVERTISSEMENT); |
|
| 63 | 63 | $this->query = 'SELECT 1'; |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | // Correction Insert Ignore |
| 67 | 67 | // INSERT IGNORE -> insert (tout court et pas 'insert or replace') |
| 68 | 68 | if (strpos($this->query, 'INSERT IGNORE') === 0) { |
| 69 | - spip_log("Sqlite : requete transformee -> $this->query", 'sqlite.' . _LOG_DEBUG); |
|
| 70 | - $this->query = 'INSERT ' . substr($this->query, '13'); |
|
| 69 | + spip_log("Sqlite : requete transformee -> $this->query", 'sqlite.'._LOG_DEBUG); |
|
| 70 | + $this->query = 'INSERT '.substr($this->query, '13'); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | // Correction des dates avec INTERVAL |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | if (($this->sqlite_version == 2) && (strpos($this->query, 'USING') !== false)) { |
| 96 | 96 | spip_log( |
| 97 | 97 | "'USING (champ)' n'est pas reconnu en SQLite 2. Utilisez 'ON table1.champ = table2.champ'", |
| 98 | - 'sqlite.' . _LOG_ERREUR |
|
| 98 | + 'sqlite.'._LOG_ERREUR |
|
| 99 | 99 | ); |
| 100 | 100 | $this->query = preg_replace('/USING\s*\([^\)]*\)/', '', $this->query); |
| 101 | 101 | } |
@@ -118,8 +118,8 @@ discard block |
||
| 118 | 118 | } else { |
| 119 | 119 | $suite = ''; |
| 120 | 120 | } |
| 121 | - $pref = ($this->prefixe) ? $this->prefixe . '_' : ''; |
|
| 122 | - $this->query = preg_replace('/([,\s])spip_/S', '\1' . $pref, $this->query) . $suite; |
|
| 121 | + $pref = ($this->prefixe) ? $this->prefixe.'_' : ''; |
|
| 122 | + $this->query = preg_replace('/([,\s])spip_/S', '\1'.$pref, $this->query).$suite; |
|
| 123 | 123 | |
| 124 | 124 | // Correction zero AS x |
| 125 | 125 | // pg n'aime pas 0+x AS alias, sqlite, dans le meme style, |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | return $this->iter->{$nom}(); |
| 151 | 151 | } catch (Exception $e) { |
| 152 | 152 | // #GETCHILDREN sur un fichier de DirectoryIterator ... |
| 153 | - spip_log("Methode {$nom} en echec sur " . get_class($this->iter)); |
|
| 153 | + spip_log("Methode {$nom} en echec sur ".get_class($this->iter)); |
|
| 154 | 154 | spip_log("Cela peut être normal : retour d'une ligne de resultat ne pouvant pas calculer cette methode"); |
| 155 | 155 | |
| 156 | 156 | return ''; |
@@ -374,7 +374,7 @@ discard block |
||
| 374 | 374 | return null; |
| 375 | 375 | } |
| 376 | 376 | |
| 377 | - return '(' . implode(") {$operateur} (", $filtres_string) . ')'; |
|
| 377 | + return '('.implode(") {$operateur} (", $filtres_string).')'; |
|
| 378 | 378 | } |
| 379 | 379 | |
| 380 | 380 | /** |
@@ -457,7 +457,7 @@ discard block |
||
| 457 | 457 | return $this->composer_filtre($v[1], $v[0], $v[2]); |
| 458 | 458 | } |
| 459 | 459 | |
| 460 | - return null; // sera ignore |
|
| 460 | + return null; // sera ignore |
|
| 461 | 461 | } |
| 462 | 462 | |
| 463 | 463 | /** |
@@ -485,28 +485,28 @@ discard block |
||
| 485 | 485 | // if (!in_array($cle, array('cle', 'valeur'))) |
| 486 | 486 | // return; |
| 487 | 487 | |
| 488 | - $a = '$this->get_select(\'' . $cle . '\')'; |
|
| 488 | + $a = '$this->get_select(\''.$cle.'\')'; |
|
| 489 | 489 | |
| 490 | 490 | $filtre = ''; |
| 491 | 491 | |
| 492 | 492 | if ('REGEXP' == $op) { |
| 493 | - $filtre = 'filtrer("match", ' . $a . ', ' . str_replace('\"', '"', $valeur) . ')'; |
|
| 493 | + $filtre = 'filtrer("match", '.$a.', '.str_replace('\"', '"', $valeur).')'; |
|
| 494 | 494 | $op = ''; |
| 495 | 495 | } else { |
| 496 | 496 | if ('LIKE' == $op) { |
| 497 | 497 | $valeur = str_replace(['\"', '_', '%'], ['"', '.', '.*'], preg_quote($valeur)); |
| 498 | - $filtre = 'filtrer("match", ' . $a . ', ' . $valeur . ')'; |
|
| 498 | + $filtre = 'filtrer("match", '.$a.', '.$valeur.')'; |
|
| 499 | 499 | $op = ''; |
| 500 | 500 | } else { |
| 501 | 501 | if ('=' == $op) { |
| 502 | 502 | $op = '=='; |
| 503 | 503 | } else { |
| 504 | 504 | if ('IN' == $op) { |
| 505 | - $filtre = 'in_array(' . $a . ', array' . $valeur . ')'; |
|
| 505 | + $filtre = 'in_array('.$a.', array'.$valeur.')'; |
|
| 506 | 506 | $op = ''; |
| 507 | 507 | } else { |
| 508 | 508 | if (!in_array($op, ['<', '<=', '>', '>='])) { |
| 509 | - spip_log('operateur non reconnu ' . $op); // [todo] mettre une erreur de squelette |
|
| 509 | + spip_log('operateur non reconnu '.$op); // [todo] mettre une erreur de squelette |
|
| 510 | 510 | $op = ''; |
| 511 | 511 | } |
| 512 | 512 | } |
@@ -515,7 +515,7 @@ discard block |
||
| 515 | 515 | } |
| 516 | 516 | |
| 517 | 517 | if ($op) { |
| 518 | - $filtre = $a . $op . str_replace('\"', '"', $valeur); |
|
| 518 | + $filtre = $a.$op.str_replace('\"', '"', $valeur); |
|
| 519 | 519 | } |
| 520 | 520 | |
| 521 | 521 | if ($not) { |
@@ -564,7 +564,7 @@ discard block |
||
| 564 | 564 | // Creer la fonction de filtrage sur $this |
| 565 | 565 | if ($this->filtre) { |
| 566 | 566 | if ($filtres = $this->assembler_filtres($this->filtre)) { |
| 567 | - $filtres = 'return ' . $filtres . ';'; |
|
| 567 | + $filtres = 'return '.$filtres.';'; |
|
| 568 | 568 | $this->func_filtre = fn () => eval($filtres); |
| 569 | 569 | } else { |
| 570 | 570 | $this->func_filtre = null; |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | // Si a ce stade on n'a pas de table, il y a un bug |
| 164 | 164 | if (!is_array($this->tableau)) { |
| 165 | 165 | $this->err = true; |
| 166 | - spip_log('erreur datasource ' . var_export($command, true)); |
|
| 166 | + spip_log('erreur datasource '.var_export($command, true)); |
|
| 167 | 167 | } |
| 168 | 168 | |
| 169 | 169 | // {datapath query.results} |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | isset($this->command['sourcemode']) |
| 206 | 206 | and !in_array($this->command['sourcemode'], ['table', 'array', 'tableau']) |
| 207 | 207 | ) { |
| 208 | - charger_fonction($this->command['sourcemode'] . '_to_array', 'inc', true); |
|
| 208 | + charger_fonction($this->command['sourcemode'].'_to_array', 'inc', true); |
|
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | # le premier argument peut etre un array, une URL etc. |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | # avons-nous un cache dispo ? |
| 215 | 215 | $cle = null; |
| 216 | 216 | if (is_string($src)) { |
| 217 | - $cle = 'datasource_' . md5($this->command['sourcemode'] . ':' . var_export($this->command['source'], true)); |
|
| 217 | + $cle = 'datasource_'.md5($this->command['sourcemode'].':'.var_export($this->command['source'], true)); |
|
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | $cache = $this->cache_get($cle); |
@@ -273,7 +273,7 @@ discard block |
||
| 273 | 273 | |
| 274 | 274 | if ( |
| 275 | 275 | !$this->err |
| 276 | - and $data_to_array = charger_fonction($this->command['sourcemode'] . '_to_array', 'inc', true) |
|
| 276 | + and $data_to_array = charger_fonction($this->command['sourcemode'].'_to_array', 'inc', true) |
|
| 277 | 277 | ) { |
| 278 | 278 | $args = $this->command['source']; |
| 279 | 279 | $args[0] = $data; |
@@ -413,13 +413,13 @@ discard block |
||
| 413 | 413 | $tv = '%s'; |
| 414 | 414 | } # {par valeur/xx/yy} ?? |
| 415 | 415 | else { |
| 416 | - $tv = 'table_valeur(%s, ' . var_export($r[1], true) . ')'; |
|
| 416 | + $tv = 'table_valeur(%s, '.var_export($r[1], true).')'; |
|
| 417 | 417 | } |
| 418 | 418 | $sortfunc .= ' |
| 419 | - $a = ' . sprintf($tv, '$aa') . '; |
|
| 420 | - $b = ' . sprintf($tv, '$bb') . '; |
|
| 419 | + $a = ' . sprintf($tv, '$aa').'; |
|
| 420 | + $b = ' . sprintf($tv, '$bb').'; |
|
| 421 | 421 | if ($a <> $b) |
| 422 | - return ($a ' . (!empty($r[2]) ? '>' : '<') . ' $b) ? -1 : 1;'; |
|
| 422 | + return ($a ' . (!empty($r[2]) ? '>' : '<').' $b) ? -1 : 1;'; |
|
| 423 | 423 | } |
| 424 | 424 | } |
| 425 | 425 | } |
@@ -51,12 +51,12 @@ |
||
| 51 | 51 | // chercher la classe d'iterateur Iterateur/XXX |
| 52 | 52 | // definie dans le fichier src/Compilateur/Iterateur/xxx.php |
| 53 | 53 | // FIXME: déclarer quelque part les iterateurs supplémentaires |
| 54 | - $class = __NAMESPACE__ . '\\' . ucfirst(strtolower($iterateur)); |
|
| 54 | + $class = __NAMESPACE__.'\\'.ucfirst(strtolower($iterateur)); |
|
| 55 | 55 | if (!class_exists($class)) { |
| 56 | 56 | // historique |
| 57 | 57 | // Chercher IterateurXXX |
| 58 | - include_spip('iterateur/' . $iterateur); |
|
| 59 | - $class = 'Iterateur' . $iterateur; |
|
| 58 | + include_spip('iterateur/'.$iterateur); |
|
| 59 | + $class = 'Iterateur'.$iterateur; |
|
| 60 | 60 | if (!class_exists($class)) { |
| 61 | 61 | exit("Iterateur {$iterateur} non trouvé"); |
| 62 | 62 | // si l'iterateur n'existe pas, on se rabat sur le generique |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | $rejouer = (_SESSION_REJOUER === true) ? rejouer_session() : _SESSION_REJOUER; |
| 190 | 190 | } |
| 191 | 191 | |
| 192 | - return $rejouer . (defined('_TESTER_NOSCRIPT') ? _TESTER_NOSCRIPT : ''); |
|
| 192 | + return $rejouer.(defined('_TESTER_NOSCRIPT') ? _TESTER_NOSCRIPT : ''); |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | /** |
@@ -235,9 +235,9 @@ discard block |
||
| 235 | 235 | // |
| 236 | 236 | if ($vcs = version_vcs_courante(_DIR_RACINE, true)) { |
| 237 | 237 | if ($vcs['vcs'] === 'GIT') { |
| 238 | - $url = 'https://git.spip.net/spip/spip/commit/' . $vcs['commit']; |
|
| 238 | + $url = 'https://git.spip.net/spip/spip/commit/'.$vcs['commit']; |
|
| 239 | 239 | } elseif ($vcs['vcs'] === 'SVN') { |
| 240 | - $url = 'https://core.spip.net/projects/spip/repository/revisions/' . $vcs['commit']; |
|
| 240 | + $url = 'https://core.spip.net/projects/spip/repository/revisions/'.$vcs['commit']; |
|
| 241 | 241 | } else { |
| 242 | 242 | $url = ''; |
| 243 | 243 | } |
@@ -247,21 +247,21 @@ discard block |
||
| 247 | 247 | $commit = "<a href=\"$url\" target=\"_blank\" rel=\"noopener noreferrer\">$commit</a>"; |
| 248 | 248 | } |
| 249 | 249 | if ($vcs['branch']) { |
| 250 | - $commit = $vcs['branch'] . ': ' . $commit; |
|
| 250 | + $commit = $vcs['branch'].': '.$commit; |
|
| 251 | 251 | } |
| 252 | 252 | $version .= " {$vcs['vcs']} [$commit]"; |
| 253 | 253 | } |
| 254 | 254 | |
| 255 | 255 | // et la version de l'ecran de securite |
| 256 | 256 | $secu = defined('_ECRAN_SECURITE') |
| 257 | - ? '<br />' . _T('ecran_securite', ['version' => _ECRAN_SECURITE]) |
|
| 257 | + ? '<br />'._T('ecran_securite', ['version' => _ECRAN_SECURITE]) |
|
| 258 | 258 | : ''; |
| 259 | 259 | |
| 260 | 260 | return _T( |
| 261 | 261 | 'info_copyright', |
| 262 | 262 | [ |
| 263 | 263 | 'spip' => "<b>SPIP $version</b> ", |
| 264 | - 'lien_gpl' => '<a href="https://www.gnu.org/licenses/gpl-3.0.html">' . _T('info_copyright_gpl') . '</a>' |
|
| 264 | + 'lien_gpl' => '<a href="https://www.gnu.org/licenses/gpl-3.0.html">'._T('info_copyright_gpl').'</a>' |
|
| 265 | 265 | ] |
| 266 | 266 | ) |
| 267 | 267 | . $secu; |
@@ -288,8 +288,8 @@ discard block |
||
| 288 | 288 | $onfocus = ''; |
| 289 | 289 | } |
| 290 | 290 | |
| 291 | - $form = '<input type="text" size="10" value="' . $recherche_aff . '" name="recherche" class="recherche" accesskey="r"' . $onfocus . ' />'; |
|
| 292 | - $form .= "<input type='image' src='" . chemin_image('rechercher-20.png') . "' name='submit' class='submit' alt='" . _T('info_rechercher') . "' />"; |
|
| 291 | + $form = '<input type="text" size="10" value="'.$recherche_aff.'" name="recherche" class="recherche" accesskey="r"'.$onfocus.' />'; |
|
| 292 | + $form .= "<input type='image' src='".chemin_image('rechercher-20.png')."' name='submit' class='submit' alt='"._T('info_rechercher')."' />"; |
|
| 293 | 293 | |
| 294 | - return "<div class='spip_recherche'>" . generer_form_ecrire($page, $form . $complement, " method='get'") . '</div>'; |
|
| 294 | + return "<div class='spip_recherche'>".generer_form_ecrire($page, $form.$complement, " method='get'").'</div>'; |
|
| 295 | 295 | } |
@@ -44,13 +44,13 @@ discard block |
||
| 44 | 44 | // celle du texte) et public (spip_lang est la langue du texte) |
| 45 | 45 | $dir = _DIR_RESTREINT ? lang_dir() : lang_dir($GLOBALS['spip_lang']); |
| 46 | 46 | |
| 47 | - $p = 'puce' . (test_espace_prive() ? '_prive' : ''); |
|
| 47 | + $p = 'puce'.(test_espace_prive() ? '_prive' : ''); |
|
| 48 | 48 | if ($dir == 'rtl') { |
| 49 | 49 | $p .= '_rtl'; |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | if (!isset($GLOBALS[$p])) { |
| 53 | - $GLOBALS[$p] = '<span class="spip-puce ' . $dir . '"><b>–</b></span>'; |
|
| 53 | + $GLOBALS[$p] = '<span class="spip-puce '.$dir.'"><b>–</b></span>'; |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | return $GLOBALS[$p]; |
@@ -68,13 +68,13 @@ discard block |
||
| 68 | 68 | function spip_balisage_code(string $corps, bool $bloc = false, string $attributs = '', string $langage = '') { |
| 69 | 69 | |
| 70 | 70 | $echap = spip_htmlspecialchars($corps); // il ne faut pas passer dans entites_html, ne pas transformer les &#xxx; du code ! |
| 71 | - $class = "spip_code " . ($bloc ? 'spip_code_block' : 'spip_code_inline'); |
|
| 71 | + $class = "spip_code ".($bloc ? 'spip_code_block' : 'spip_code_inline'); |
|
| 72 | 72 | if ($attributs) { |
| 73 | - $attributs = " " . trim($attributs); |
|
| 73 | + $attributs = " ".trim($attributs); |
|
| 74 | 74 | } |
| 75 | 75 | if ($langage) { |
| 76 | 76 | $class .= " language-$langage"; |
| 77 | - $attributs .= ' data-language="'. $langage .'"'; |
|
| 77 | + $attributs .= ' data-language="'.$langage.'"'; |
|
| 78 | 78 | } |
| 79 | 79 | if ($bloc) { |
| 80 | 80 | $html = "<div class=\"precode\">" |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | else { |
| 89 | 89 | $echap = str_replace("\t", " ", $echap); |
| 90 | 90 | $echap = str_replace(" ", " ", $echap); |
| 91 | - $html = "<code class=\"$class\" dir=\"ltr\"$attributs>" . $echap . '</code>'; |
|
| 91 | + $html = "<code class=\"$class\" dir=\"ltr\"$attributs>".$echap.'</code>'; |
|
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | return $html; |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | if (!defined('_BALISES_BLOCS_REGEXP')) { |
| 109 | - define('_BALISES_BLOCS_REGEXP', ',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS'); |
|
| 109 | + define('_BALISES_BLOCS_REGEXP', ',</?('._BALISES_BLOCS.')[>[:space:]],iS'); |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | // |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | |
| 124 | 124 | // Tester si on echappe en span ou en div |
| 125 | 125 | if (is_null($mode) or !in_array($mode, ['div', 'span'])) { |
| 126 | - $mode = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $rempl) ? 'div' : 'span'; |
|
| 126 | + $mode = preg_match(',</?('._BALISES_BLOCS.')[>[:space:]],iS', $rempl) ? 'div' : 'span'; |
|
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | // Decouper en morceaux, base64 a des probleme selon la taille de la pile |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | ) { |
| 159 | 159 | foreach ($matches as $m) { |
| 160 | 160 | if ($m[1] === 'code') { |
| 161 | - $code = '<code' . $m[2] . '>' . spip_htmlspecialchars($m[3]) . '</code>'; |
|
| 161 | + $code = '<code'.$m[2].'>'.spip_htmlspecialchars($m[3]).'</code>'; |
|
| 162 | 162 | $pre = str_replace($m[0], $code, $pre); |
| 163 | 163 | } |
| 164 | 164 | } |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | |
| 169 | 169 | // Echapper les <code>...</ code> |
| 170 | 170 | function traiter_echap_code_dist($regs, $options = []) { |
| 171 | - [, , $att, $corps] = $regs; |
|
| 171 | + [,, $att, $corps] = $regs; |
|
| 172 | 172 | |
| 173 | 173 | // ne pas mettre le <div...> s'il n'y a qu'une ligne |
| 174 | 174 | if (strpos($corps, "\n") !== false) { |
@@ -252,11 +252,11 @@ discard block |
||
| 252 | 252 | else { |
| 253 | 253 | $callback_secure_prefix = ($callback_options['secure_prefix'] ?? ''); |
| 254 | 254 | if ( |
| 255 | - function_exists($f = $callback_prefix . $callback_secure_prefix . 'traiter_echap_' . strtolower($regs[1])) |
|
| 256 | - or function_exists($f = $f . '_dist') |
|
| 255 | + function_exists($f = $callback_prefix.$callback_secure_prefix.'traiter_echap_'.strtolower($regs[1])) |
|
| 256 | + or function_exists($f = $f.'_dist') |
|
| 257 | 257 | or ($callback_secure_prefix and ( |
| 258 | - function_exists($f = $callback_prefix . 'traiter_echap_' . strtolower($regs[1])) |
|
| 259 | - or function_exists($f = $f . '_dist') |
|
| 258 | + function_exists($f = $callback_prefix.'traiter_echap_'.strtolower($regs[1])) |
|
| 259 | + or function_exists($f = $f.'_dist') |
|
| 260 | 260 | )) |
| 261 | 261 | ) { |
| 262 | 262 | $echap = $f($regs, $callback_options); |
@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | // dans une callback autonommee |
| 279 | 279 | if (strpos($preg ?: _PROTEGE_BLOCS, 'script') !== false) { |
| 280 | 280 | if ( |
| 281 | - strpos($letexte, '<' . '?') !== false and preg_match_all( |
|
| 281 | + strpos($letexte, '<'.'?') !== false and preg_match_all( |
|
| 282 | 282 | ',<[?].*($|[?]>),UisS', |
| 283 | 283 | $letexte, |
| 284 | 284 | $matches, |
@@ -310,7 +310,7 @@ discard block |
||
| 310 | 310 | strpos($letexte, '<') !== false |
| 311 | 311 | and |
| 312 | 312 | preg_match_all( |
| 313 | - ',<(span|div)\sclass=[\'"]base64' . $source . '[\'"]\s(.*)>\s*</\1>,UmsS', |
|
| 313 | + ',<(span|div)\sclass=[\'"]base64'.$source.'[\'"]\s(.*)>\s*</\1>,UmsS', |
|
| 314 | 314 | $letexte, |
| 315 | 315 | $regs, |
| 316 | 316 | PREG_SET_ORDER |
@@ -327,7 +327,7 @@ discard block |
||
| 327 | 327 | } |
| 328 | 328 | } |
| 329 | 329 | if ($at) { |
| 330 | - $rempl = '<' . $reg[1] . '>' . $rempl . '</' . $reg[1] . '>'; |
|
| 330 | + $rempl = '<'.$reg[1].'>'.$rempl.'</'.$reg[1].'>'; |
|
| 331 | 331 | foreach ($at as $attr => $a) { |
| 332 | 332 | $rempl = inserer_attribut($rempl, $attr, $a); |
| 333 | 333 | } |
@@ -408,8 +408,8 @@ discard block |
||
| 408 | 408 | $texte = nettoyer_raccourcis_typo($texte); |
| 409 | 409 | |
| 410 | 410 | // balises de sauts de ligne et paragraphe |
| 411 | - $texte = preg_replace('/<p( [^>]*)?' . '>/', "\r", $texte); |
|
| 412 | - $texte = preg_replace('/<br( [^>]*)?' . '>/', "\n", $texte); |
|
| 411 | + $texte = preg_replace('/<p( [^>]*)?'.'>/', "\r", $texte); |
|
| 412 | + $texte = preg_replace('/<br( [^>]*)?'.'>/', "\n", $texte); |
|
| 413 | 413 | |
| 414 | 414 | // on repasse les doubles \n en \r que nettoyer_raccourcis_typo() a pu modifier |
| 415 | 415 | $texte = str_replace("\n\n", "\r", $texte); |
@@ -417,7 +417,7 @@ discard block |
||
| 417 | 417 | // supprimer les tags |
| 418 | 418 | $texte = supprimer_tags($texte); |
| 419 | 419 | $texte = trim(str_replace("\n", ' ', $texte)); |
| 420 | - $texte .= "\n"; // marquer la fin |
|
| 420 | + $texte .= "\n"; // marquer la fin |
|
| 421 | 421 | |
| 422 | 422 | // corriger la longueur de coupe |
| 423 | 423 | // en fonction de la presence de caracteres utf |
@@ -432,7 +432,7 @@ discard block |
||
| 432 | 432 | // couper au mot precedent |
| 433 | 433 | $long = spip_substr($texte, 0, max($taille - 4, 1)); |
| 434 | 434 | $u = $GLOBALS['meta']['pcre_u']; |
| 435 | - $court = preg_replace("/([^\s][\s]+)[^\s]*\n?$/" . $u, "\\1", $long); |
|
| 435 | + $court = preg_replace("/([^\s][\s]+)[^\s]*\n?$/".$u, "\\1", $long); |
|
| 436 | 436 | if (is_null($suite)) { |
| 437 | 437 | $suite = (defined('_COUPER_SUITE') ? _COUPER_SUITE : ' (...)'); |
| 438 | 438 | } |
@@ -442,7 +442,7 @@ discard block |
||
| 442 | 442 | if (spip_strlen($court) < max(0.75 * $taille, 2)) { |
| 443 | 443 | $points = ''; |
| 444 | 444 | $long = spip_substr($texte, 0, $taille); |
| 445 | - $texte = preg_replace("/([^\s][\s]+)[^\s]*\n?$/" . $u, "\\1", $long); |
|
| 445 | + $texte = preg_replace("/([^\s][\s]+)[^\s]*\n?$/".$u, "\\1", $long); |
|
| 446 | 446 | // encore trop court ? couper au caractere |
| 447 | 447 | if (spip_strlen($texte) < 0.75 * $taille) { |
| 448 | 448 | $texte = $long; |
@@ -461,7 +461,7 @@ discard block |
||
| 461 | 461 | // supprimer l'eventuelle entite finale mal coupee |
| 462 | 462 | $texte = preg_replace('/&#?[a-z0-9]*$/S', '', $texte); |
| 463 | 463 | |
| 464 | - return quote_amp(trim($texte)) . $points; |
|
| 464 | + return quote_amp(trim($texte)).$points; |
|
| 465 | 465 | } |
| 466 | 466 | |
| 467 | 467 | |
@@ -473,16 +473,16 @@ discard block |
||
| 473 | 473 | define('_PROTEGE_JS_MODELES', creer_uniqid()); |
| 474 | 474 | } |
| 475 | 475 | foreach ($r as $regs) { |
| 476 | - $t = str_replace($regs[0], code_echappement($regs[0], 'javascript' . _PROTEGE_JS_MODELES), $t); |
|
| 476 | + $t = str_replace($regs[0], code_echappement($regs[0], 'javascript'._PROTEGE_JS_MODELES), $t); |
|
| 477 | 477 | } |
| 478 | 478 | } |
| 479 | - if (preg_match_all(',<\?php.*?($|\?' . '>),isS', $t, $r, PREG_SET_ORDER)) { |
|
| 479 | + if (preg_match_all(',<\?php.*?($|\?'.'>),isS', $t, $r, PREG_SET_ORDER)) { |
|
| 480 | 480 | if (!defined('_PROTEGE_PHP_MODELES')) { |
| 481 | 481 | include_spip('inc/acces'); |
| 482 | 482 | define('_PROTEGE_PHP_MODELES', creer_uniqid()); |
| 483 | 483 | } |
| 484 | 484 | foreach ($r as $regs) { |
| 485 | - $t = str_replace($regs[0], code_echappement($regs[0], 'php' . _PROTEGE_PHP_MODELES), $t); |
|
| 485 | + $t = str_replace($regs[0], code_echappement($regs[0], 'php'._PROTEGE_PHP_MODELES), $t); |
|
| 486 | 486 | } |
| 487 | 487 | } |
| 488 | 488 | } |
@@ -600,7 +600,7 @@ discard block |
||
| 600 | 600 | if (!empty($options['wrap_suspect'])) { |
| 601 | 601 | $texte = wrap($texte, $options['wrap_suspect']); |
| 602 | 602 | } |
| 603 | - $texte = "<mark class='danger-js' title='" . attribut_html(_T('erreur_contenu_suspect')) . "'>⚠️</mark> " . $texte; |
|
| 603 | + $texte = "<mark class='danger-js' title='".attribut_html(_T('erreur_contenu_suspect'))."'>⚠️</mark> ".$texte; |
|
| 604 | 604 | } |
| 605 | 605 | |
| 606 | 606 | $texte = $collecteurModeles->retablir($texte); |
@@ -747,11 +747,11 @@ discard block |
||
| 747 | 747 | **/ |
| 748 | 748 | function supprime_img($letexte, $message = null) { |
| 749 | 749 | if ($message === null) { |
| 750 | - $message = '(' . _T('img_indisponible') . ')'; |
|
| 750 | + $message = '('._T('img_indisponible').')'; |
|
| 751 | 751 | } |
| 752 | 752 | |
| 753 | 753 | return preg_replace( |
| 754 | - ',<(img|doc|emb)([0-9]+)(\|([^>]*))?' . '\s*/?' . '>,i', |
|
| 754 | + ',<(img|doc|emb)([0-9]+)(\|([^>]*))?'.'\s*/?'.'>,i', |
|
| 755 | 755 | $message, |
| 756 | 756 | $letexte |
| 757 | 757 | ); |