Changeset 109644 in spip-zone
- Timestamp:
- Mar 23, 2018, 1:24:07 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
_core_/plugins/medias/medias_pipelines.php
r103156 r109644 357 357 foreach (array('id_vignette', 'hauteur', 'largeur', 'mode', 'taille') as $champ) { 358 358 if ($flux['args']['champ'] == $champ) { 359 $flux['data'] = _T('medias:info_' . $champ);359 $flux['data'] = 'medias:info_' . $champ; 360 360 361 361 return $flux; … … 364 364 foreach (array('fichier', 'taille', 'mode', 'credits') as $champ) { 365 365 if ($flux['args']['champ'] == $champ) { 366 $flux['data'] = _T('medias:label_' . $champ);366 $flux['data'] = 'medias:label_' . $champ; 367 367 368 368 return $flux; … … 370 370 } 371 371 if ($flux['args']['champ'] == 'distant') { 372 $flux['data'] = $flux['data'] = _T('medias:fichier_distant');373 } 374 375 return $flux; 376 } 372 $flux['data'] = $flux['data'] = 'medias:fichier_distant'; 373 } 374 375 return $flux; 376 }
Note: See TracChangeset
for help on using the changeset viewer.