Skip to content
GitLab
Explorer
Connexion
S'inscrire
Navigation principale
Rechercher ou aller à…
Projet
S
stats-facil
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Wiki
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Extraits de code
Compilation
Pipelines
Jobs
Planifications de pipeline
Artéfacts
Déploiement
Releases
Registre de paquets
Registre de conteneur
Registre de modèles
Opération
Environnements
Modules Terraform
Surveillance
Incidents
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse CI/CD
Données d'analyse du dépôt
Expériences du modèle
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
facil
stats-facil
Validations
eb30d889
Valider
eb30d889
rédigé
8 years ago
par
Matthieu Aubry
Validation de
GitHub
8 years ago
Parcourir les fichiers
Options
Téléchargements
Plain Diff
Merge pull request #10635 from piwik/2.x-dev
2.16.3-rc3
parents
b27cbb96
f6e2f550
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Modifications
2
Masquer les modifications d'espaces
En ligne
Côte à côte
Affichage de
2 fichiers modifiés
config/global.php
+11
-4
11 ajouts, 4 suppressions
config/global.php
core/Version.php
+1
-1
1 ajout, 1 suppression
core/Version.php
avec
12 ajouts
et
5 suppressions
config/global.php
+
11
−
4
Voir le fichier @
eb30d889
...
@@ -45,10 +45,17 @@ return array(
...
@@ -45,10 +45,17 @@ return array(
return
$cache
;
return
$cache
;
},
},
'Piwik\Cache\Backend'
=>
function
(
ContainerInterface
$c
)
{
'Piwik\Cache\Backend'
=>
function
(
ContainerInterface
$c
)
{
try
{
// If Piwik is not installed yet, it's possible the tmp/ folder is not writable
$backend
=
$c
->
get
(
'ini.Cache.backend'
);
// we prevent failing with an unclear message eg. coming from doctrine-cache
}
catch
(
NotFoundException
$ex
)
{
// by forcing to use a cache backend which always works ie. array
$backend
=
'chained'
;
// happens if global.ini.php is not available
if
(
!
\Piwik\SettingsPiwik
::
isPiwikInstalled
())
{
$backend
=
'array'
;
}
else
{
try
{
$backend
=
$c
->
get
(
'ini.Cache.backend'
);
}
catch
(
NotFoundException
$ex
)
{
$backend
=
'chained'
;
// happens if global.ini.php is not available
}
}
}
return
\Piwik\Cache
::
buildBackend
(
$backend
);
return
\Piwik\Cache
::
buildBackend
(
$backend
);
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
core/Version.php
+
1
−
1
Voir le fichier @
eb30d889
...
@@ -20,7 +20,7 @@ final class Version
...
@@ -20,7 +20,7 @@ final class Version
* The current Piwik version.
* The current Piwik version.
* @var string
* @var string
*/
*/
const
VERSION
=
'2.16.3-rc
2
'
;
const
VERSION
=
'2.16.3-rc
3
'
;
public
function
isStableVersion
(
$version
)
public
function
isStableVersion
(
$version
)
{
{
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter