Fix: Avoid errors into rpm packages

This commit is contained in:
Laurent Destailleur 2011-07-31 23:19:04 +00:00
parent e2c007305c
commit 37ead2f97e
171 changed files with 437 additions and 607 deletions

View File

@ -14,8 +14,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -23,7 +22,7 @@
* \brief File of class to manage widget boxes
* \author Rodolphe Qiedeville
* \author Laurent Destailleur
* \version $Id: boxes.php,v 1.53 2011/07/08 17:59:55 eldy Exp $
* \version $Id: boxes.php,v 1.54 2011/07/31 23:19:04 eldy Exp $
*/

View File

@ -17,15 +17,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* or see http://www.gnu.org/
*/
/**
* \file htdocs/document.php
* \brief Wrapper to download data files
* \version $Id: document.php,v 1.122 2011/07/09 00:15:16 eldy Exp $
* \version $Id: document.php,v 1.123 2011/07/31 23:19:04 eldy Exp $
* \remarks Call of this wrapper is made with URL:
* document.php?modulepart=repfichierconcerne&file=pathrelatifdufichier
*/

View File

@ -20,15 +20,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/filefunc.inc.php
* \ingroup core
* \brief File that include conf.php file and functions.lib.php
* \version $Id: filefunc.inc.php,v 1.20 2011/07/30 10:23:24 eldy Exp $
* \version $Id: filefunc.inc.php,v 1.21 2011/07/31 23:19:04 eldy Exp $
*/
define('DOL_VERSION','3.1.0-beta'); // Also defined in htdocs/install/inc.php (Ex: x.y.z-alpha, x.y.z)
@ -65,7 +64,7 @@ $conffiletoshowshort = "conf.php";
# Define localization of conf file
$conffile = "conf/conf.php";
$conffiletoshow = "htdocs/conf/conf.php";
# For debian like systems
# For debian/redhat like systems
#$conffile = "/etc/dolibarr/conf.php";
#$conffiletoshow = "/etc/dolibarr/conf.php";

View File

@ -14,14 +14,13 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/index.php
* \brief Dolibarr home page
* \version $Id: index.php,v 1.199 2011/07/30 10:23:24 eldy Exp $
* \version $Id: index.php,v 1.200 2011/07/31 23:19:05 eldy Exp $
*/
define('NOCSRFCHECK',1); // This is login page. We must be able to go on it from another web site.
@ -574,7 +573,7 @@ if ($user->admin && empty($conf->global->MAIN_REMOVE_INSTALL_WARNING))
$db->close();
llxFooter('$Date: 2011/07/30 10:23:24 $ - $Revision: 1.199 $');
llxFooter('$Date: 2011/07/31 23:19:05 $ - $Revision: 1.200 $');
/**

View File

@ -18,15 +18,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/main.inc.php
* \ingroup core
* \brief File that defines environment for Dolibarr pages only (variables not required by scripts)
* \version $Id: main.inc.php,v 1.755 2011/07/30 10:23:24 eldy Exp $
* \version $Id: main.inc.php,v 1.756 2011/07/31 23:19:05 eldy Exp $
*/
@ini_set('memory_limit', '64M'); // This may be useless if memory is hard limited by your PHP

View File

@ -21,8 +21,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -30,7 +29,7 @@
* \ingroup core
* \brief File that defines environment for all Dolibarr process (pages or scripts)
* This script reads the conf file, init $lang, $db and and empty $user
* \version $Id: master.inc.php,v 1.350 2011/07/30 10:23:24 eldy Exp $
* \version $Id: master.inc.php,v 1.351 2011/07/31 23:19:04 eldy Exp $
*/

View File

@ -13,14 +13,13 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/** \file htdocs/paybox/admin/paybox.php
* \ingroup paybox
* \brief Page to setup paybox module
* \version $Id$
* \version $Id: paybox.php,v 1.14 2011/07/31 23:20:29 eldy Exp $
*/
require("../../main.inc.php");
@ -212,5 +211,5 @@ print info_admin($langs->trans("YouCanAddTagOnUrl"));
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:20:29 $ - $Revision: 1.14 $');
?>

View File

@ -13,8 +13,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* or see http://www.gnu.org/
*/
@ -22,7 +21,7 @@
* \file htdocs/paybox/lib/paybox.lib.php
* \ingroup paybox
* \brief Library for common paybox functions
* \version $Id$
* \version $Id: paybox.lib.php,v 1.9 2011/07/31 23:24:24 eldy Exp $
*/
function llxHeaderPaybox($title, $head = "")
{

View File

@ -14,14 +14,13 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/** \file htdocs/paypal/admin/paypal.php
* \ingroup paypal
* \brief Page to setup paypal module
* \version $Id: paypal.php,v 1.22 2011/07/09 08:05:08 hregis Exp $
* \version $Id: paypal.php,v 1.23 2011/07/31 23:24:25 eldy Exp $
*/
require("../../main.inc.php");
@ -273,5 +272,5 @@ print info_admin($langs->trans("YouCanAddTagOnUrl"));
$db->close();
llxFooter('$Date: 2011/07/09 08:05:08 $ - $Revision: 1.22 $');
llxFooter('$Date: 2011/07/31 23:24:25 $ - $Revision: 1.23 $');
?>

View File

@ -13,8 +13,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* or see http://www.gnu.org/
*/
@ -22,7 +21,7 @@
* \file htdocs/paypal/lib/paypal.lib.php
* \ingroup paypal
* \brief Library for common paypal functions
* \version $Id: paypal.lib.php,v 1.25 2011/07/13 16:55:34 eldy Exp $
* \version $Id: paypal.lib.php,v 1.26 2011/07/31 23:24:24 eldy Exp $
*/
function llxHeaderPaypal($title, $head = "")
{

View File

@ -16,15 +16,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/admin/produit.php
* \ingroup produit
* \brief Page d'administration/configuration du module Produit
* \version $Id$
* \version $Id: produit.php,v 1.7 2011/07/31 23:24:02 eldy Exp $
*/
require("../../main.inc.php");
@ -295,5 +294,5 @@ if ($conf->global->PRODUCT_CANVAS_ABILITY)
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:02 $ - $Revision: 1.7 $');
?>

View File

@ -14,14 +14,13 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/ajaxproducts.php
* \brief File to return Ajax response on product list request
* \version $Id: ajaxproducts.php,v 1.36 2011/07/10 17:28:10 hregis Exp $
* \version $Id: ajaxproducts.php,v 1.37 2011/07/31 23:19:26 eldy Exp $
*/
if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); // Disables token renewal

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/barcode.php
* \ingroup product
* \brief Page with bar code informations of product
* \version $Id$
* \version $Id: barcode.php,v 1.52 2011/07/31 23:19:26 eldy Exp $
*/
require("../main.inc.php");
@ -165,5 +164,5 @@ print "</div>\n";
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:19:26 $ - $Revision: 1.52 $');
?>

View File

@ -12,15 +12,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/canvas/default/product.default.class.php
* \ingroup produit
* \brief Fichier de la classe des produits par defaut
* \version $Id: product.default.class.php,v 1.41 2011/07/21 01:20:33 eldy Exp $
* \version $Id: product.default.class.php,v 1.42 2011/07/31 23:19:28 eldy Exp $
*/
include_once(DOL_DOCUMENT_ROOT.'/product/class/product.class.php');

View File

@ -12,10 +12,9 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* $Id$
* $Id: create.tpl.php,v 1.8 2011/07/31 23:19:26 eldy Exp $
*/
?>

View File

@ -12,10 +12,9 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* $Id$
* $Id: edit.tpl.php,v 1.3 2011/07/31 23:19:27 eldy Exp $
*/
?>

View File

@ -12,10 +12,9 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* $Id$
* $Id: list.tpl.php,v 1.4 2011/07/31 23:19:26 eldy Exp $
*/
?>

View File

@ -12,10 +12,9 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* $Id: view.tpl.php,v 1.5 2011/07/08 13:11:07 eldy Exp $
* $Id: view.tpl.php,v 1.6 2011/07/31 23:19:26 eldy Exp $
*/
?>

View File

@ -12,15 +12,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/canvas/service/product.service.class.php
* \ingroup service
* \brief Fichier de la classe des services par defaut
* \version $Id: product.service.class.php,v 1.14 2011/07/21 01:20:33 eldy Exp $
* \version $Id: product.service.class.php,v 1.15 2011/07/31 23:24:03 eldy Exp $
*/
/**

View File

@ -12,10 +12,9 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* $Id$
* $Id: create.tpl.php,v 1.4 2011/07/31 23:24:02 eldy Exp $
*/
?>

View File

@ -12,10 +12,9 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* $Id$
* $Id: edit.tpl.php,v 1.3 2011/07/31 23:24:02 eldy Exp $
*/
?>

View File

@ -12,10 +12,9 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* $Id$
* $Id: list.tpl.php,v 1.4 2011/07/31 23:24:02 eldy Exp $
*/
?>

View File

@ -12,10 +12,9 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* $Id: view.tpl.php,v 1.3 2011/07/08 13:33:42 eldy Exp $
* $Id: view.tpl.php,v 1.4 2011/07/31 23:24:02 eldy Exp $
*/
?>

View File

@ -12,14 +12,13 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/class/html.formproduct.class.php
* \brief Fichier de la classe des fonctions predefinie de composants html
* \version $Id$
* \version $Id: html.formproduct.class.php,v 1.11 2011/07/31 23:24:03 eldy Exp $
*/

View File

@ -17,15 +17,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/class/product.class.php
* \ingroup produit
* \brief Fichier de la classe des produits predefinis
* \version $Id: product.class.php,v 1.47 2011/07/29 20:47:35 eldy Exp $
* \version $Id: product.class.php,v 1.48 2011/07/31 23:24:03 eldy Exp $
*/
require_once(DOL_DOCUMENT_ROOT ."/core/class/commonobject.class.php");

View File

@ -13,15 +13,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/class/service.class.php
* \ingroup service
* \brief Fichier de la classe des services predefinis
* \version $Id$
* \version $Id: service.class.php,v 1.4 2011/07/31 23:24:02 eldy Exp $
*/
require_once(DOL_DOCUMENT_ROOT ."/core/class/commonobject.class.php");

View File

@ -16,15 +16,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/composition/fiche.php
* \ingroup product
* \brief Page de la fiche produit
* \version $Id$
* \version $Id: fiche.php,v 1.9 2011/07/31 23:24:03 eldy Exp $
*/
require("../../main.inc.php");
@ -447,5 +446,5 @@ print "\n</div>\n";
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:03 $ - $Revision: 1.9 $');
?>

View File

@ -16,15 +16,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/document.php
* \ingroup product
* \brief Page des documents joints sur les produits
* \version $Id: document.php,v 1.68 2011/07/06 20:56:49 eldy Exp $
* \version $Id: document.php,v 1.69 2011/07/31 23:19:25 eldy Exp $
*/
require('../main.inc.php');
@ -189,5 +188,5 @@ else
$db->close();
llxFooter('$Date: 2011/07/06 20:56:49 $ - $Revision: 1.68 $');
llxFooter('$Date: 2011/07/31 23:19:25 $ - $Revision: 1.69 $');
?>

View File

@ -18,15 +18,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/fiche.php
* \ingroup product
* \brief Page to show product
* \version $Id: fiche.php,v 1.373 2011/07/29 20:47:35 eldy Exp $
* \version $Id: fiche.php,v 1.374 2011/07/31 23:19:26 eldy Exp $
*/
require("../main.inc.php");
@ -1646,6 +1645,6 @@ if ($product->id && $action == '' && $product->status)
$db->close();
llxFooter('$Date: 2011/07/29 20:47:35 $ - $Revision: 1.373 $');
llxFooter('$Date: 2011/07/31 23:19:26 $ - $Revision: 1.374 $');
?>

View File

@ -16,15 +16,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/fournisseurs.php
* \ingroup product
* \brief Page of tab suppliers for products
* \version $Id$
* \version $Id: fournisseurs.php,v 1.97 2011/07/31 23:19:26 eldy Exp $
*/
require("../main.inc.php");
@ -431,5 +430,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:19:26 $ - $Revision: 1.97 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/index.php
* \ingroup product
* \brief Page accueil des produits et services
* \version $Id$
* \version $Id: index.php,v 1.101 2011/07/31 23:19:25 eldy Exp $
*/
require("../main.inc.php");
@ -248,5 +247,5 @@ print '</td></tr></table>';
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:19:25 $ - $Revision: 1.101 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/liste.php
* \ingroup produit
* \brief Page to list products and services
* \version $Id: liste.php,v 1.151 2011/06/26 00:41:41 eldy Exp $
* \version $Id: liste.php,v 1.152 2011/07/31 23:19:25 eldy Exp $
*/
require("../main.inc.php");
@ -476,5 +475,5 @@ else
$db->close();
llxFooter('$Date: 2011/06/26 00:41:41 $ - $Revision: 1.151 $');
llxFooter('$Date: 2011/07/31 23:19:25 $ - $Revision: 1.152 $');
?>

View File

@ -15,15 +15,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/photos.php
* \ingroup product
* \brief Onglet photos de la fiche produit
* \version $Id$
* \version $Id: photos.php,v 1.91 2011/07/31 23:19:25 eldy Exp $
*/
require("../main.inc.php");
@ -205,5 +204,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:19:25 $ - $Revision: 1.91 $');
?>

View File

@ -15,14 +15,13 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/** \file htdocs/product/popuprop.php
* \ingroup propal, produit
* \brief Liste des produits/services par popularite
* \version $Id$
* \version $Id: popuprop.php,v 1.42 2011/07/31 23:19:25 eldy Exp $
*/
require("../main.inc.php");
@ -157,5 +156,5 @@ print "</table>";
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:19:25 $ - $Revision: 1.42 $');
?>

View File

@ -16,15 +16,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/price.php
* \ingroup product
* \brief Page to show product prices
* \version $Id$
* \version $Id: price.php,v 1.110 2011/07/31 23:19:25 eldy Exp $
*/
require("../main.inc.php");
@ -535,5 +534,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:19:25 $ - $Revision: 1.110 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/reassort.php
* \ingroup produit
* \brief Page to list stocks
* \version $Id$
* \version $Id: reassort.php,v 1.62 2011/07/31 23:19:25 eldy Exp $
*/
require("../main.inc.php");
@ -361,5 +360,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:19:25 $ - $Revision: 1.62 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stats/commande.php
* \ingroup product, service, commande
* \brief Page des stats des commandes clients pour un produit
* \version $Id$
* \version $Id: commande.php,v 1.47 2011/07/31 23:24:00 eldy Exp $
*/
require("../../main.inc.php");
@ -191,5 +190,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.47 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stats/commande_fournisseur.php
* \ingroup product, service, commande
* \brief Page des stats des commandes fournisseurs pour un produit
* \version $Id$
* \version $Id: commande_fournisseur.php,v 1.33 2011/07/31 23:24:00 eldy Exp $
*/
require("../../main.inc.php");
@ -185,5 +184,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.33 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stats/contrat.php
* \ingroup product, service, contrat
* \brief Page des stats des contrats pour un produit
* \version $Id$
* \version $Id: contrat.php,v 1.46 2011/07/31 23:24:00 eldy Exp $
*/
require("../../main.inc.php");
@ -203,5 +202,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.46 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stats/facture.php
* \ingroup product, service, facture
* \brief Page des stats des factures clients pour un produit
* \version $Id$
* \version $Id: facture.php,v 1.83 2011/07/31 23:24:00 eldy Exp $
*/
require("../../main.inc.php");
@ -194,5 +193,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.83 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stats/facture_fournisseur.php
* \ingroup product, service, facture
* \brief Page des stats des factures fournisseurs pour un produit
* \version $Id$
* \version $Id: facture_fournisseur.php,v 1.32 2011/07/31 23:24:00 eldy Exp $
*/
require("../../main.inc.php");
@ -195,5 +194,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.32 $');
?>

View File

@ -15,15 +15,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stats/fiche.php
* \ingroup product
* \brief Page des stats produits
* \version $Id: fiche.php,v 1.109 2011/07/04 10:04:18 eldy Exp $
* \version $Id: fiche.php,v 1.110 2011/07/31 23:24:00 eldy Exp $
*/
require("../../main.inc.php");
@ -271,5 +270,5 @@ else
$db->close();
llxFooter('$Date: 2011/07/04 10:04:18 $ - $Revision: 1.109 $');
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.110 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stats/propal.php
* \ingroup product, service, propal
* \brief Page des stats des propals pour un produit
* \version $Id$
* \version $Id: propal.php,v 1.57 2011/07/31 23:24:00 eldy Exp $
*/
@ -185,5 +184,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.57 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stock/class/entrepot.class.php
* \ingroup stock
* \brief Fichier de la classe de gestion des entrepots
* \version $Id$
* \version $Id: entrepot.class.php,v 1.11 2011/07/31 23:24:02 eldy Exp $
*/
require_once(DOL_DOCUMENT_ROOT."/core/class/commonobject.class.php");

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stock/class/mouvementstock.class.php
* \ingroup stock
* \brief Fichier de la classe de gestion des mouvements de stocks
* \version $Revision$
* \version $Revision: 1.13 $
*/

View File

@ -13,15 +13,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stock/fiche-valo.php
* \ingroup stock
* \brief Page fiche de valorisation du stock dans l'entrepot
* \version $Id$
* \version $Id: fiche-valo.php,v 1.17 2011/07/31 23:24:01 eldy Exp $
*/
require("../../main.inc.php");
@ -143,5 +142,5 @@ if ($_GET["id"])
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.17 $');
?>

View File

@ -15,15 +15,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stock/fiche.php
* \ingroup stock
* \brief Page fiche entrepot
* \version $Id$
* \version $Id: fiche.php,v 1.100 2011/07/31 23:24:01 eldy Exp $
*/
require("../../main.inc.php");
@ -520,5 +519,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.100 $');
?>

View File

@ -14,17 +14,16 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* $Id$
* $Id: index.php,v 1.31 2011/07/31 23:24:01 eldy Exp $
*/
/**
* \file htdocs/product/stock/index.php
* \ingroup stock
* \brief Page accueil stocks produits
* \version $Revision$
* \version $Revision: 1.31 $
*/
require("../../main.inc.php");
@ -164,5 +163,5 @@ print '</td></tr></table>';
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.31 $');
?>

View File

@ -12,15 +12,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stock/info.php
* \ingroup stock
* \brief Page des informations d'un entrepot
* \version $Id$
* \version $Id: info.php,v 1.16 2011/07/31 23:24:01 eldy Exp $
*/
require("../../main.inc.php");
@ -54,5 +53,5 @@ print '</div>';
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.16 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stock/liste.php
* \ingroup stock
* \brief Page liste des stocks
* \version $Id$
* \version $Id: liste.php,v 1.22 2011/07/31 23:24:01 eldy Exp $
*/
require("../../main.inc.php");
@ -111,5 +110,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.22 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stock/mouvement.php
* \ingroup stock
* \brief Page to list stock movements
* \version $Id$
* \version $Id: mouvement.php,v 1.63 2011/07/31 23:24:01 eldy Exp $
*/
require("../../main.inc.php");
@ -339,5 +338,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.63 $');
?>

View File

@ -16,15 +16,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stock/product.php
* \ingroup product, stock
* \brief Page to list detailed stock of a product
* \version $Id$
* \version $Id: product.php,v 1.108 2011/07/31 23:24:00 eldy Exp $
*/
require("../../main.inc.php");
@ -519,5 +518,5 @@ print "</table>";
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.108 $');
?>

View File

@ -15,15 +15,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stock/user.php
* \ingroup stock
* \brief Page to link dolibarr users with warehouses
* \version $Id$
* \version $Id: user.php,v 1.16 2011/07/31 23:24:01 eldy Exp $
* \deprecated This page is never called. Feature will never be developped.
*/
@ -176,5 +175,5 @@ if ($_GET["id"])
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.16 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/product/stock/valo.php
* \ingroup stock
* \brief Page with stock values
* \version $Id$
* \version $Id: valo.php,v 1.27 2011/07/31 23:24:01 eldy Exp $
*/
require("../../main.inc.php");
@ -162,5 +161,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.27 $');
?>

View File

@ -14,8 +14,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* or see http://www.gnu.org/
*/
@ -23,7 +22,7 @@
* \file htdocs/product/traduction.php
* \ingroup product
* \brief Page de traduction des produits
* \version $Id$
* \version $Id: traduction.php,v 1.45 2011/07/31 23:19:26 eldy Exp $
*/
require("../main.inc.php");
@ -266,5 +265,5 @@ if ($_GET["action"] == 'add' && ($user->rights->produit->creer || $user->rights-
print '<br>';
}
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:19:26 $ - $Revision: 1.45 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/activity/index.php
* \ingroup projet
* \brief Page activite perso du module projet
* \version $Id: index.php,v 1.35 2011/07/04 10:56:12 eldy Exp $
* \version $Id: index.php,v 1.36 2011/07/31 23:23:39 eldy Exp $
*/
require ("../../main.inc.php");
@ -332,5 +331,5 @@ print '</td></tr></table>';
$db->close();
llxFooter('$Date: 2011/07/04 10:56:12 $ - $Revision: 1.35 $');
llxFooter('$Date: 2011/07/31 23:23:39 $ - $Revision: 1.36 $');
?>

View File

@ -15,15 +15,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/activity/list.php
* \ingroup projet
* \brief List activities of tasks
* \version $Id$
* \version $Id: list.php,v 1.31 2011/07/31 23:23:39 eldy Exp $
*/
require ("../../main.inc.php");
@ -147,5 +146,5 @@ print '</div>';
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:23:39 $ - $Revision: 1.31 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/class/project.class.php
* \ingroup projet
* \brief Fichier de la classe de gestion des projets
* \version $Id$
* \version $Id: project.class.php,v 1.24 2011/07/31 23:23:39 eldy Exp $
*/
require_once(DOL_DOCUMENT_ROOT."/core/class/commonobject.class.php");

View File

@ -13,15 +13,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/class/task.class.php
* \ingroup project
* \brief This file is a CRUD class file for Task (Create/Read/Update/Delete)
* \version $Id: task.class.php,v 1.11 2011/06/25 10:55:11 eldy Exp $
* \version $Id: task.class.php,v 1.12 2011/07/31 23:23:39 eldy Exp $
* \remarks Initialy built by build_class_from_table on 2008-09-10 12:41
*/

View File

@ -12,15 +12,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/contact.php
* \ingroup project
* \brief Onglet de gestion des contacts du projet
* \version $Id$
* \version $Id: contact.php,v 1.28 2011/07/31 23:23:39 eldy Exp $
*/
require("../main.inc.php");
@ -416,5 +415,5 @@ if ($id > 0 || ! empty($ref))
$db->close();
llxFooter('$Date$');
llxFooter('$Date: 2011/07/31 23:23:39 $');
?>

View File

@ -12,15 +12,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/document.php
* \ingroup project
* \brief Page de gestion des documents attachees a un projet
* \version $Id: document.php,v 1.13 2011/07/06 20:56:49 eldy Exp $
* \version $Id: document.php,v 1.14 2011/07/31 23:23:36 eldy Exp $
*/
require('../main.inc.php');
@ -203,5 +202,5 @@ else
$db->close();
llxFooter('$Date: 2011/07/06 20:56:49 $ - $Revision: 1.13 $');
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.14 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/element.php
* \ingroup projet facture
* \brief Page of project referrers
* \version $Id$
* \version $Id: element.php,v 1.49 2011/07/31 23:23:39 eldy Exp $
*/
require("../main.inc.php");
@ -284,5 +283,5 @@ foreach ($listofreferent as $key => $value)
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:23:39 $ - $Revision: 1.49 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/fiche.php
* \ingroup projet
* \brief Project card
* \version $Id: fiche.php,v 1.126 2011/07/04 08:00:52 eldy Exp $
* \version $Id: fiche.php,v 1.127 2011/07/31 23:23:36 eldy Exp $
*/
require("../main.inc.php");
@ -608,5 +607,5 @@ else
$db->close();
llxFooter('$Date: 2011/07/04 08:00:52 $ - $Revision: 1.126 $');
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.127 $');
?>

View File

@ -12,15 +12,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/ganttview.php
* \ingroup projet
* \brief Gantt diagrame of a project
* \version $Id$
* \version $Id: ganttchart.php,v 1.7 2011/07/31 23:23:36 eldy Exp $
*/
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/ganttview.php
* \ingroup projet
* \brief Gantt diagramm of a project
* \version $Id$
* \version $Id: ganttview.php,v 1.14 2011/07/31 23:23:38 eldy Exp $
*/
require ("../main.inc.php");
@ -254,5 +253,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:23:38 $ - $Revision: 1.14 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/index.php
* \ingroup projet
* \brief Main project home page
* \version $Id$
* \version $Id: index.php,v 1.75 2011/07/31 23:23:39 eldy Exp $
*/
require("../main.inc.php");
@ -131,5 +130,5 @@ print '</td></tr></table>';
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:23:39 $ - $Revision: 1.75 $');
?>

View File

@ -12,14 +12,13 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/jsgantt_language.js.php
* \brief Fichier de javascript de traduction pour JSGantt
* \version $Id$
* \version $Id: jsgantt_language.js.php,v 1.4 2011/07/31 23:23:39 eldy Exp $
*/
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language

View File

@ -15,15 +15,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/liste.php
* \ingroup projet
* \brief Page to list projects
* \version $Id$
* \version $Id: liste.php,v 1.49 2011/07/31 23:23:37 eldy Exp $
*/
require("../main.inc.php");
@ -206,5 +205,5 @@ print "</table>";
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:23:37 $ - $Revision: 1.49 $');
?>

View File

@ -12,15 +12,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/note.php
* \ingroup project
* \brief Fiche d'information sur un projet
* \version $Id$
* \version $Id: note.php,v 1.13 2011/07/31 23:23:38 eldy Exp $
*/
require("../main.inc.php");
@ -209,5 +208,5 @@ if ($id > 0 || ! empty($ref))
}
$db->close();
llxFooter('$Date$ - $Revision: 1.15 ');
llxFooter('$Date: 2011/07/31 23:23:38 $ - $Revision: 1.15 ');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/tasks.php
* \ingroup projet
* \brief List all tasks of a project
* \version $Id$
* \version $Id: tasks.php,v 1.8 2011/07/31 23:23:39 eldy Exp $
*/
require ("../main.inc.php");
@ -346,5 +345,5 @@ else
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:23:39 $ - $Revision: 1.8 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/tasks/contact.php
* \ingroup project
* \brief Actors of a task
* \version $Id$
* \version $Id: contact.php,v 1.22 2011/07/31 23:23:36 eldy Exp $
*/
require ("../../main.inc.php");
@ -417,5 +416,5 @@ if ($id > 0 || ! empty($ref))
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.22 $');
?>

View File

@ -12,15 +12,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/tasks/document.php
* \ingroup project
* \brief Page de gestion des documents attachees a une tache d'un projet
* \version $Id: document.php,v 1.15 2011/07/06 20:56:50 eldy Exp $
* \version $Id: document.php,v 1.16 2011/07/31 23:23:36 eldy Exp $
*/
require('../../main.inc.php');
@ -205,5 +204,5 @@ else
$db->close();
llxFooter('$Date: 2011/07/06 20:56:50 $ - $Revision: 1.15 $');
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.16 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/tasks/index.php
* \ingroup project
* \brief List all task of a project
* \version $Id$
* \version $Id: index.php,v 1.43 2011/07/31 23:23:36 eldy Exp $
*/
require ("../../main.inc.php");
@ -113,5 +112,5 @@ if ($user->rights->projet->creer)
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.43 $');
?>

View File

@ -12,15 +12,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/tasks/note.php
* \ingroup project
* \brief Page to show information on a task
* \version $Id$
* \version $Id: note.php,v 1.13 2011/07/31 23:23:36 eldy Exp $
*/
require ("../../main.inc.php");
@ -203,5 +202,5 @@ if ($id > 0 || ! empty($ref))
}
$db->close();
llxFooter('$Date$ - $Revision: 1.15 ');
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.15 ');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/tasks/task.php
* \ingroup projet
* \brief Fiche taches d'un projet
* \version $Id$
* \version $Id: task.php,v 1.43 2011/07/31 23:23:36 eldy Exp $
*/
require ("../../main.inc.php");
@ -292,5 +291,5 @@ if ($taskid)
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.43 $');
?>

View File

@ -15,15 +15,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/projet/tasks/time.php
* \ingroup projet
* \brief Page to add new time spent on a task
* \version $Id: time.php,v 1.32 2011/07/14 15:37:37 simnandez Exp $
* \version $Id: time.php,v 1.33 2011/07/31 23:23:36 eldy Exp $
*/
require("../../main.inc.php");
@ -404,5 +403,5 @@ if ($_GET["id"] > 0)
$db->close();
llxFooter('$Date: 2011/07/14 15:37:37 $ - $Revision: 1.32 $');
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.33 $');
?>

View File

@ -12,8 +12,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/** \file htdocs/public/agenda/agendaexport.php
@ -22,7 +21,7 @@
* http://127.0.0.1/dolibarr/public/agenda/agendaexport.php?format=vcal&exportkey=cle
* http://127.0.0.1/dolibarr/public/agenda/agendaexport.php?format=ical&type=event&exportkey=cle
* http://127.0.0.1/dolibarr/public/agenda/agendaexport.php?format=rss&exportkey=cle
* \version $Id$
* \version $Id: agendaexport.php,v 1.18 2011/07/31 23:23:21 eldy Exp $
*/
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1');
@ -74,7 +73,7 @@ if (empty($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY))
llxHeaderVierge();
print '<div class="error">Module Agenda was not configured properly.</div>';
llxFooterVierge('$Date$ - $Revision$');
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.18 $');
exit;
}
@ -85,7 +84,7 @@ if (empty($_GET["exportkey"]) || $conf->global->MAIN_AGENDA_XCAL_EXPORTKEY != $_
llxHeaderVierge();
print '<div class="error">Bad value for key.</div>';
llxFooterVierge('$Date$ - $Revision$');
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.18 $');
exit;
}
@ -117,7 +116,7 @@ if ($shortfilename=='dolibarrcalendar')
$langs->load("errors");
llxHeaderVierge();
print '<div class="error">'.$langs->trans("ErrorWrongValueForParameterX",'format').'</div>';
llxFooterVierge('$Date$ - $Revision$');
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.18 $');
exit;
}
@ -202,5 +201,5 @@ if ($format == 'rss')
llxHeaderVierge();
print '<div class="error">'.$agenda->error.'</div>';
llxFooterVierge('$Date$ - $Revision$');
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.18 $');
?>

View File

@ -12,8 +12,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -21,7 +20,7 @@
* \ingroup core
* \brief A redirect page to an error
* \author Laurent Destailleur
* \version $Id$
* \version $Id: index.php,v 1.2 2011/07/31 23:23:21 eldy Exp $
*/
require("../../master.inc.php");

View File

@ -14,8 +14,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -23,7 +22,7 @@
* \ingroup core
* \brief Entry page to access demo
* \author Laurent Destailleur
* \version $Id$
* \version $Id: index.php,v 1.61 2011/07/31 23:23:21 eldy Exp $
*/
define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -354,7 +353,7 @@ if (! empty($conf->global->MAIN_GOOGLE_AN_ID))
}
llxFooterVierge('$Date$ - $Revision$');
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.61 $');

View File

@ -12,15 +12,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/public/donations/donateurs_code.php
* \ingroup donation
* \brief Page to list donators
* \version $Id$
* \version $Id: donateurs_code.php,v 1.13 2011/07/31 23:23:21 eldy Exp $
*/
define("NOLOGIN",1); // This means this output page does not require to be logged.

View File

@ -12,8 +12,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -21,7 +20,7 @@
* \ingroup core
* \brief A redirect page to an error
* \author Laurent Destailleur
* \version $Id$
* \version $Id: index.php,v 1.2 2011/07/31 23:23:21 eldy Exp $
*/
require("../../master.inc.php");

View File

@ -13,15 +13,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/public/donations/therm.php
* \ingroup donation
* \brief Screen with thermometer
* \version $Id$
* \version $Id: therm.php,v 1.8 2011/07/31 23:23:21 eldy Exp $
*/
define("NOLOGIN",1); // This means this output page does not require to be logged.

View File

@ -12,8 +12,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -21,7 +20,7 @@
* \ingroup core
* \brief A redirect page to an error
* \author Laurent Destailleur
* \version $Id$
* \version $Id: index.php,v 1.5 2011/07/31 23:23:21 eldy Exp $
*/
require("../master.inc.php");

View File

@ -12,8 +12,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -21,7 +20,7 @@
* \ingroup core
* \brief A redirect page to an error
* \author Laurent Destailleur
* \version $Id$
* \version $Id: index.php,v 1.3 2011/07/31 23:23:21 eldy Exp $
*/
require("../../master.inc.php");

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/public/members/new.php
* \ingroup member
* \brief Example of form to add a new member
* \version $Id: new.php,v 1.42 2011/07/13 11:56:36 eldy Exp $
* \version $Id: new.php,v 1.43 2011/07/31 23:23:21 eldy Exp $
*
* Note that you can add following constant to change behaviour of page
* MEMBER_NEWFORM_AMOUNT Default amount for autosubscribe form
@ -289,7 +288,7 @@ if ($action == 'added')
print $langs->trans("NewMemberbyWeb");
print '</center>';
llxFooterVierge('$Date: 2011/07/13 11:56:36 $ - $Revision: 1.42 $');
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.43 $');
exit;
}
@ -537,5 +536,5 @@ print "<br></form>\n";
$db->close();
llxFooterVierge('$Date: 2011/07/13 11:56:36 $ - $Revision: 1.42 $');
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.43 $');
?>

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/public/members/public_card.php
* \ingroup member
* \brief File to show a public card of a member
* \version $Id$
* \version $Id: public_card.php,v 1.12 2011/07/31 23:23:21 eldy Exp $
*/
define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -114,7 +113,7 @@ if ($rowid > 0)
$db->close();
llxFooterVierge('$Date$ - $Revision$');
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.12 $');
/* Functions header and footer */

View File

@ -14,15 +14,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/public/members/public_list.php
* \ingroup member
* \brief File sample to list members
* \version $Id$
* \version $Id: public_list.php,v 1.18 2011/07/31 23:23:21 eldy Exp $
*/
define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -144,5 +143,5 @@ else
$db->close();
llxFooterVierge('$Date$ - $Revision$');
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.18 $');
?>

View File

@ -12,8 +12,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -21,7 +20,7 @@
* \ingroup core
* \brief A redirect page to an error
* \author Laurent Destailleur
* \version $Id$
* \version $Id: index.php,v 1.2 2011/07/31 23:23:21 eldy Exp $
*/
require("../../master.inc.php");

View File

@ -14,8 +14,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -23,7 +22,7 @@
* \ingroup paybox
* \brief File to offer a way to make a payment for a particular Dolibarr entity
* \author Laurent Destailleur
* \version $Id: newpayment.php,v 1.60 2011/07/13 12:03:30 eldy Exp $
* \version $Id: newpayment.php,v 1.61 2011/07/31 23:23:21 eldy Exp $
*/
define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -729,5 +728,5 @@ html_print_paybox_footer($mysoc,$langs);
$db->close();
llxFooterPayBox('$Date: 2011/07/13 12:03:30 $ - $Revision: 1.60 $');
llxFooterPayBox('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.61 $');
?>

View File

@ -13,8 +13,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -22,7 +21,7 @@
* \ingroup paybox
* \brief File to show page after a failed payment
* \author Laurent Destailleur
* \version $Id$
* \version $Id: paymentko.php,v 1.9 2011/07/31 23:23:20 eldy Exp $
*/
define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -78,5 +77,5 @@ html_print_paybox_footer($mysoc,$langs);
$db->close();
llxFooterPayBox('$Date$ - $Revision$');
llxFooterPayBox('$Date: 2011/07/31 23:23:20 $ - $Revision: 1.9 $');
?>

View File

@ -13,8 +13,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -22,7 +21,7 @@
* \ingroup paybox
* \brief File to show page after a successful payment
* \author Laurent Destailleur
* \version $Id$
* \version $Id: paymentok.php,v 1.9 2011/07/31 23:23:20 eldy Exp $
*/
define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -78,5 +77,5 @@ html_print_paybox_footer($mysoc,$langs);
$db->close();
llxFooterPayBox('$Date$ - $Revision$');
llxFooterPayBox('$Date: 2011/07/31 23:23:20 $ - $Revision: 1.9 $');
?>

View File

@ -12,8 +12,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -21,7 +20,7 @@
* \ingroup core
* \brief A redirect page to an error
* \author Laurent Destailleur
* \version $Id$
* \version $Id: index.php,v 1.2 2011/07/31 23:23:20 eldy Exp $
*/
require("../../master.inc.php");

View File

@ -14,8 +14,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -23,7 +22,7 @@
* \ingroup paypal
* \brief File to offer a way to make a payment for a particular Dolibarr entity
* \author Laurent Destailleur
* \version $Id: newpayment.php,v 1.24 2011/07/13 12:00:18 eldy Exp $
* \version $Id: newpayment.php,v 1.26 2011/07/31 23:23:20 eldy Exp $
*/
define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -287,6 +286,7 @@ if (! empty($conf->global->PAYPAL_NEWFORM_TEXT))
$langs->load("members");
if (preg_match('/^\((.*)\)$/',$conf->global->PAYPAL_NEWFORM_TEXT,$reg)) $text.=$langs->trans($reg[1])."<br>\n";
else $text.=$conf->global->PAYPAL_NEWFORM_TEXT."<br>\n";
$text='<tr><td align="center"><br>'.$text.'<br></td></tr>'."\n";
}
if (empty($text))
{
@ -946,5 +946,5 @@ html_print_paypal_footer($mysoc,$langs);
$db->close();
llxFooterPaypal('$Date: 2011/07/13 12:00:18 $ - $Revision: 1.24 $');
llxFooterPaypal('$Date: 2011/07/31 23:23:20 $ - $Revision: 1.26 $');
?>

View File

@ -13,8 +13,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -24,7 +23,7 @@
* This page is called by paypal with url provided to payal competed with parameter TOKEN=xxx
* This token can be used to get more informations.
* \author Laurent Destailleur
* \version $Id$
* \version $Id: paymentko.php,v 1.7 2011/07/31 23:23:20 eldy Exp $
*/
define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -82,5 +81,5 @@ html_print_paypal_footer($mysoc,$langs);
$db->close();
llxFooterPaypal('$Date$ - $Revision$');
llxFooterPaypal('$Date: 2011/07/31 23:23:20 $ - $Revision: 1.7 $');
?>

View File

@ -13,8 +13,7 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
@ -24,7 +23,7 @@
* This page is called by paypal with url provided to payal competed with parameter TOKEN=xxx
* This token can be used to get more informations.
* \author Laurent Destailleur
* \version $Id$
* \version $Id: paymentok.php,v 1.12 2011/07/31 23:23:20 eldy Exp $
*/
define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -189,5 +188,5 @@ html_print_paypal_footer($mysoc,$langs);
$db->close();
llxFooterPaypal('$Date$ - $Revision$');
llxFooterPaypal('$Date: 2011/07/31 23:23:20 $ - $Revision: 1.12 $');
?>

View File

@ -17,15 +17,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/societe/agenda.php
* \ingroup societe
* \brief Page of third party events
* \version $Id$
* \version $Id: agenda.php,v 1.21 2011/07/31 23:22:57 eldy Exp $
*/
require("../main.inc.php");
@ -187,5 +186,5 @@ if ($_GET["socid"])
$db->close();
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/31 23:22:57 $ - $Revision: 1.21 $');
?>

View File

@ -15,14 +15,13 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/societe/ajaxcompanies.php
* \brief File to return Ajax response on third parties request
* \version $Id$
* \version $Id: ajaxcompanies.php,v 1.30 2011/07/31 23:22:57 eldy Exp $
*/
if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); // Disables token renewal

View File

@ -13,14 +13,13 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/societe/ajaxcountries.php
* \brief File to return Ajax response on country request
* \version $Id$
* \version $Id: ajaxcountries.php,v 1.15 2011/07/31 23:22:56 eldy Exp $
*/
if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); // Disables token renewal

View File

@ -13,15 +13,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/societe/canvas/actions_card_common.class.php
* \ingroup thirdparty
* \brief Fichier de la classe Thirdparty card controller (common)
* \version $Id: actions_card_common.class.php,v 1.23 2011/07/08 13:07:45 eldy Exp $
* \version $Id: actions_card_common.class.php,v 1.24 2011/07/31 23:22:58 eldy Exp $
*/
/**

View File

@ -13,15 +13,14 @@
* GNU General Public License for more details.
*
* 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.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/societe/canvas/default/actions_card_default.class.php
* \ingroup thirdparty
* \brief Fichier de la classe Thirdparty card controller (default canvas)
* \version $Id$
* \version $Id: actions_card_default.class.php,v 1.13 2011/07/31 23:22:58 eldy Exp $
*/
include_once(DOL_DOCUMENT_ROOT.'/societe/canvas/actions_card_common.class.php');

Some files were not shown because too many files have changed in this diff Show More