Subversion Repositories eFlore/Archives.eflore-consultation-v2

Compare Revisions

Ignore whitespace Rev 17 → Rev 18

/trunk/eflore.php
19,7 → 19,7
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: eflore.php,v 1.3 2004-06-22 12:27:20 linda Exp $
// CVS : $Id: eflore.php,v 1.4 2004-08-17 11:15:07 linda Exp $
/**
* Application de consultation des données d'eFlore.
*
36,7 → 36,7
//Autres auteurs :
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.3 $ $Date: 2004-06-22 12:27:20 $
*@version $Revision: 1.4 $ $Date: 2004-08-17 11:15:07 $
// +------------------------------------------------------------------------------------------------------+
*/
 
47,6 → 47,9
/** <br> Inclusion du fichier config de l'application eflore. */
require_once GEN_CHEMIN_CLIENT.'eflore/configuration/eflore_config.inc.php';
 
require_once GEN_CHEMIN_CLIENT.'eflore/langues/eflore_langue_'.EFLORE_LANGUE.'.inc.php';
require_once GEN_CHEMIN_CLIENT.'eflore/bibliotheque/fonctions/eflore.fonct.php';
 
/** <br> Inclusion de la classe PEAR d'abstraction de base de donnée. */
require_once 'DB.php';
 
75,7 → 78,23
}
elseif($_GET['onglet']=='photo')
{
include_once GEN_CHEMIN_CLIENT.'eflore/eflore_photo.inc.php';
if(!isset($_GET['soum']))
{
if (isset($_GET['modif'])){
include_once GEN_CHEMIN_CLIENT.'eflore/eflore_modif.inc.php';
$sortie=$res;
}
else{
include_once GEN_CHEMIN_CLIENT.'eflore/eflore_photo.inc.php';
$sortie=$res;
}
}
else
{
include_once GEN_CHEMIN_CLIENT.'eflore/eflore_soum.inc.php';
$sortie=$res;
}
 
$GLOBALS['db_eflore']->disconnect();
$sortie=$res;
}