From 3dfad634734045e6e52d5d583bc86bc765eab6e8 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 19 Sep 2010 13:35:03 +0000 Subject: [PATCH] Fix: Bad param --- htdocs/compta/bank/info.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/compta/bank/info.php b/htdocs/compta/bank/info.php index 233fad40785..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 @@ -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"]);