From 2f227d82294e47432cf82ddd44e115dd71d6fb4e Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 19 Sep 2010 13:34:53 +0000 Subject: [PATCH] Fix: Bad param --- htdocs/compta/bank/info.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/compta/bank/info.php b/htdocs/compta/bank/info.php index 30b772c8c0b..06a0ad243ab 100644 --- a/htdocs/compta/bank/info.php +++ b/htdocs/compta/bank/info.php @@ -1,5 +1,5 @@ +/* Copyright (C) 2005-2010 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 @@ -25,7 +25,7 @@ require("./pre.inc.php"); require_once(DOL_DOCUMENT_ROOT."/lib/functions2.lib.php"); -require_once(DOL_DOCUMENT_ROOT."/paiement.class.php"); +require_once(DOL_DOCUMENT_ROOT."/compta/paiement/class/paiement.class.php"); $langs->load("banks"); $langs->load("companies"); @@ -38,7 +38,7 @@ $langs->load("companies"); llxHeader(); $line = new AccountLine($db); -$line->fetch($_GET["rowid"], $user); +$line->fetch($_GET["rowid"]); $line->info($_GET["rowid"]);