2
0
forked from Wavyzz/dolibarr

Fix: Message for payment forms

This commit is contained in:
Laurent Destailleur
2011-07-13 11:56:36 +00:00
parent f79e39517b
commit 3c30e1c8c3
8 changed files with 20 additions and 23 deletions

View File

@@ -31,7 +31,7 @@
* \file htdocs/core/class/html.form.class.php
* \ingroup core
* \brief File of class with all html predefined components
* \version $Id: html.form.class.php,v 1.189 2011/07/13 14:03:15 eldy Exp $
* \version $Id: html.form.class.php,v 1.188 2011/07/10 17:28:09 hregis Exp $
*/
@@ -1771,14 +1771,12 @@ class Form
}
/**
* Return combo list of differents status of a proposal
* Values are id of table c_propalst
* @param selected etat pre-selectionne
* \brief Retourne la liste deroulante des differents etats d'une propal.
* Les valeurs de la liste sont les id de la table c_propalst
* \param selected etat pre-selectionne
*/
function select_propal_statut($selected='')
{
global $langs;
$sql = "SELECT id, code, label, active FROM ".MAIN_DB_PREFIX."c_propalst";
$sql .= " WHERE active = 1";