Changeset 93482 in spip-zone
- Timestamp:
- Dec 9, 2015, 3:53:17 PM (5 years ago)
- Location:
- _plugins_/uploadhtml5/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/uploadhtml5/trunk/paquet.xml
r93052 r93482 2 2 prefix="uploadhtml5" 3 3 categorie="multimedia" 4 version="1.4. 5"4 version="1.4.6" 5 5 etat="dev" 6 6 compatibilite="[3.0.0;3.1.*]" -
_plugins_/uploadhtml5/trunk/uploadhtml5_pipelines.php
r93481 r93482 57 57 $id_objet = isset($flux['args']['contexte']['id_objet']) ? $flux['args']['contexte']['id_objet'] : 0; 58 58 59 if ($flux['args']['form'] == 'joindre_document') { 59 if ( 60 $flux['args']['form'] == 'joindre_document' 61 and ( 62 isset($config['charger_public']) 63 and $config['charger_public'] 64 and !test_espace_prive() 65 ) 66 ) { 60 67 61 68 // Récupérer le formulaire d'upload en html5 et lui passer une partie du contexte de joindre_document … … 72 79 } 73 80 74 elseif ($flux['args']['form'] == 'editer_logo') { 81 elseif ( 82 $flux['args']['form'] == 'editer_logo' 83 and ( 84 isset($config['charger_public']) 85 and $config['charger_public'] 86 and !test_espace_prive() 87 ) 88 ) { 75 89 76 90 $chercher_logo = charger_fonction('chercher_logo','inc');
Note: See TracChangeset
for help on using the changeset viewer.