Changeset 70278 in spip-zone
- Timestamp:
- Feb 28, 2013, 3:14:11 PM (8 years ago)
- Location:
- _plugins_/bigbrother/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/bigbrother/trunk/bigbrother_pipelines.php
r69298 r70278 138 138 function bigbrother_affichage_final($flux){ 139 139 // Si la config est ok, à chaque hit, on teste s'il faut enregistrer la visite ou pas 140 if ( lire_config('bigbrother/visite') == 'oui')140 if (include_spip('inc/config') and lire_config('bigbrother/visite') == 'oui') 141 141 bigbrother_tester_la_visite_du_site(); 142 142 return $flux; -
_plugins_/bigbrother/trunk/inc/bigbrother.php
r52791 r70278 55 55 56 56 // On fait seulement si qqn est connecté 57 if(( $visiteur_session['id_auteur']> 0) OR ($ouvert = (lire_config('bigbrother/enregistrer_connexion_anonyme') == 'oui'))){57 if((include_spip('inc/session') and session_get('id_auteur') > 0) OR ($ouvert = (lire_config('bigbrother/enregistrer_connexion_anonyme') == 'oui'))){ 58 58 include_spip('inc/filtres'); 59 59 $time = 0; -
_plugins_/bigbrother/trunk/paquet.xml
r66999 r70278 2 2 prefix="bigbrother" 3 3 categorie="statistique" 4 version="0.3. 3"4 version="0.3.4" 5 5 etat="dev" 6 6 compatibilite="[3.0.0;["
Note: See TracChangeset
for help on using the changeset viewer.