Changeset 30253 in spip-zone for _plugins_/login_logout/action/lilo_auteur_infos.php
- Timestamp:
- Jul 27, 2009, 3:26:42 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/login_logout/action/lilo_auteur_infos.php
r26470 r30253 71 71 if($row = spip_fetch_array($sql_result)) { 72 72 $ok = true; 73 foreach( split(',', $sql_select) as $key) {73 foreach(explode(',', $sql_select) as $key) { 74 74 $$key = trim($row[$key]); 75 75 } … … 89 89 else { 90 90 // inconnu ? 91 foreach( split(',', $sql_select) as $key) {91 foreach(explode(',', $sql_select) as $key) { 92 92 $$key = ""; 93 93 } … … 97 97 $result = ""; 98 98 $sql_select .= ",logo_src"; 99 foreach( split(',', $sql_select) as $key) {99 foreach(explode(',', $sql_select) as $key) { 100 100 $result .= $$key . _LILO_AJAX_RESULT_SEPARATOR; 101 101 }
Note: See TracChangeset
for help on using the changeset viewer.