Changeset 47979 in spip-zone
- Timestamp:
- May 21, 2011, 10:10:34 AM (10 years ago)
- Location:
- _plugins_/plugin-thelia
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/plugin-thelia/auth/thelia.php
r47977 r47979 67 67 68 68 if ($result = sql_fetsel("*", "spip_auteurs", "login=" . sql_quote($login) . " AND source='thelia'")) { 69 69 $data = pipeline('thelia_authentifie',array("auteur" => $result,"statut"=>"existant")); 70 70 return $result; 71 71 } … … 102 102 spip_log("test6"); 103 103 if ($n) { 104 $data = pipeline('thelia_authentifie',array("auteur" => $n,"statut"=>"nouveau")); 104 105 return sql_fetsel("*", "spip_auteurs", "id_auteur=$n"); 105 106 106 } 107 107 -
_plugins_/plugin-thelia/spip_thelia_fonct.php
r47977 r47979 163 163 $session = charger_fonction('session','inc'); 164 164 $session($auteur); 165 $data = pipeline('thelia_authentifie',array("auteur" => $result,"statut"=>"nouveau")); 165 166 } 166 167 } -
_plugins_/plugin-thelia/spip_thelia_mes_options.php
r47977 r47979 15 15 } 16 16 17 /* Un pipeline post authenfication thelia */ 18 $GLOBALS['spip_pipeline']['thelia_authentifie'] .= ''; 19 17 20 $thelia_path = ini_get("include_path").":"._RACINE_THELIA; 18 21 ini_set('include_path', $thelia_path);
Note: See TracChangeset
for help on using the changeset viewer.