diff --git a/htdocs/admin/webcalendar.php b/htdocs/admin/webcalendar.php index 4a81ac8f5c9..2f2dbb112f9 100644 --- a/htdocs/admin/webcalendar.php +++ b/htdocs/admin/webcalendar.php @@ -1,7 +1,7 @@ * Copyright (C) 2003 Éric Seigne - * Copyright (C) 2004-2007 Laurent Destailleur + * Copyright (C) 2004-2008 Laurent Destailleur * Copyright (C) 2004 Sebastien Di Cintio * Copyright (C) 2004 Benoit Mortier * @@ -20,7 +20,6 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * $Id$ - * $Source$ */ /** @@ -31,7 +30,7 @@ */ require("./pre.inc.php"); -require_once(DOL_DOCUMENT_ROOT.'/lib/webcal.class.php'); +require_once(DOL_DOCUMENT_ROOT.'/webcal/webcal.class.php'); if (!$user->admin) diff --git a/htdocs/compta/charges.php b/htdocs/compta/charges.php index a49b2cf7a18..fba588fa0ff 100644 --- a/htdocs/compta/charges.php +++ b/htdocs/compta/charges.php @@ -2,9 +2,6 @@ /* Copyright (C) 2001-2002 Rodolphe Quiedeville * Copyright (C) 2004-2005 Laurent Destailleur * - * $Id$ - * $Source$ - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or @@ -18,6 +15,8 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * $Id$ */ /** diff --git a/htdocs/includes/triggers/interface_modWebcalendar_Webcalsynchro.class.php b/htdocs/includes/triggers/interface_modWebcalendar_Webcalsynchro.class.php index 0d2f7a05fb9..f1053a30306 100644 --- a/htdocs/includes/triggers/interface_modWebcalendar_Webcalsynchro.class.php +++ b/htdocs/includes/triggers/interface_modWebcalendar_Webcalsynchro.class.php @@ -1,5 +1,5 @@ +/* Copyright (C) 2005-2008 Laurent Destailleur * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -24,7 +24,7 @@ \brief Fichier de gestion des triggers webcalendar */ -include_once(DOL_DOCUMENT_ROOT.'/lib/webcal.class.php'); +include_once(DOL_DOCUMENT_ROOT.'/webcal/webcal.class.php'); /** diff --git a/htdocs/lib/webcal.class.php b/htdocs/webcal/webcal.class.php similarity index 98% rename from htdocs/lib/webcal.class.php rename to htdocs/webcal/webcal.class.php index 0edbc96471e..322cbc30b76 100644 --- a/htdocs/lib/webcal.class.php +++ b/htdocs/webcal/webcal.class.php @@ -1,6 +1,6 @@ - * Copyright (C) 2004-2005 Laurent Destailleur + * Copyright (C) 2004-2008 Laurent Destailleur * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,11 +17,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * $Id$ - * $Source$ */ /** - \file htdocs/lib/webcal.class.php + \file htdocs/webcal/webcal.class.php \ingroup webcalendar \brief Ensemble des fonctions permettant d'acceder a la database webcalendar. \author Rodolphe Quiedeville.