Skip to content

Commit

Permalink
Fix: Warning missing argument 2 into withdrawals
Browse files Browse the repository at this point in the history
  • Loading branch information
simnandez committed Jun 5, 2013
1 parent 9a5000d commit 097fbaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/compta/prelevement/rejets.php
@@ -1,7 +1,7 @@
<?php
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2010-2012 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2010-2013 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2005-2012 Laurent Destailleur <eldy@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or modify
Expand Down Expand Up @@ -59,7 +59,7 @@
if ($sortfield == "") $sortfield="p.datec";

$rej = new RejetPrelevement($db, $user);
$ligne = new LignePrelevement($db);
$ligne = new LignePrelevement($db, $user);

/*
* Liste des factures
Expand Down

0 comments on commit 097fbaa

Please sign in to comment.