diff --git a/ecrire/action/autoriser.php b/ecrire/action/autoriser.php index 2530e327df9db0af5947cf585d79290b18e0c3ba..1fa2f1f4fb5134d0e94e96095c4861d3f0f2a71d 100644 --- a/ecrire/action/autoriser.php +++ b/ecrire/action/autoriser.php @@ -33,6 +33,8 @@ function autoriser_dist() $refus = 1; else { + + ## code inutile ?? $auteur_session est connu des qu'on a charge inc_utils. if ($cookie_session = $_COOKIE['spip_session']) { include_ecrire("inc_session"); @@ -46,6 +48,7 @@ function autoriser_dist() $auth_login = $auteur_session['login']; } } + ## /code inutile if (!$arg) { $arg = spip_query("select id_document from spip_documents as documents where documents.fichier='". addslashes($file) ."'"); @@ -107,35 +110,4 @@ breves.statut = 'publie' AND rel_breves.id_document ='". } } -// pour envoyer un article proprement -// spip_action.php?action=telecharger&arg=$id_article -// Code mort ??? -/* -function spip_action_telecharger_dist() -{ - global $arg; - $r = spip_query(" -SELECT texte, soustitre, titre, date -FROM spip_articles -WHERE id_article=" . intval($arg) - ); - $r = spip_fetch_array($r); - if (!$r) - return 0; - else - { - $titre = $r['titre']; - $text =ereg_replace("^<code>[[:space:]]*",'', - ereg_replace('</code>$','',$r['texte'])); - header("Content-Type: text/plain; charset='iso-8859-1'"); - if ($titre) header("Content-Description: $titre"); - header("Content-Disposition: attachment; filename=" . - ($r['soustitre'] ? $r['soustitre'] : ($arg . ".txt")) . - ";" ); - header("Content-Length: ". strlen($text)+1); - print $text; - } -} -*/ - ?> diff --git a/ecrire/action/joindre.php b/ecrire/action/joindre.php index f46adbb0dc6516cf9356095ce53e3ac4390aa11e..e150d2faa99123c435f2deb246338993a61626fe 100644 --- a/ecrire/action/joindre.php +++ b/ecrire/action/joindre.php @@ -83,7 +83,6 @@ function spip_action_joindre1($arg, $mode, $type, $id, $id_document,$hash, $id_a $files = array(); if (is_array($arg)) foreach ($arg as $file) { - var_dump($file); if (!($file['error'] == 4) /* UPLOAD_ERR_NO_FILE */) $files[]=$file; }