Correction client non définie sur UTILISATEUR TEST

This commit is contained in:
Michael RICOIS 2012-02-01 14:00:05 +00:00
parent 3555bb2cb0
commit a252e974fd

View File

@ -46,12 +46,12 @@ class EnvoiController extends Zend_Controller_Action
$request = $this->getRequest();
$name = $request->getParam('ref', '');
$idClient = $request->getParam('client');
$idClient = $request->getParam('client', '');
if (empty($name)) {
echo "Référence non définie.";
}
if (empty($idClient)) {
if ($idClient!='') {
echo "Client non définie.";
}