Subversion Repositories Applications.bazar

Compare Revisions

Ignore whitespace Rev 266 → Rev 267

/trunk/bibliotheque/bazar.fonct.cal.php
19,7 → 19,7
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: bazar.fonct.cal.php,v 1.20 2007-06-25 12:15:06 alexandre_tb Exp $
// CVS : $Id: bazar.fonct.cal.php,v 1.21 2007-06-25 14:46:10 florian Exp $
/**
*
* Fonctions calendrier du module bazar
29,7 → 29,7
*@author David Delon <david.delon@clapas.net>
//Autres auteurs :
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.20 $ $Date: 2007-06-25 12:15:06 $
*@version $Revision: 1.21 $ $Date: 2007-06-25 14:46:10 $
// +------------------------------------------------------------------------------------------------------+
*/
 
76,7 → 76,10
foreach($tab_arguments as $argument) {
if ($argument != '') {
$tab_parametres = explode('=', $argument, 2);
$options[$tab_parametres[0]] = trim($tab_parametres[1], '"');
if (is_array($tab_parametres)) {
$options[$tab_parametres[0]] =
(isset($tab_parametres[1])? trim($tab_parametres[1], '"') : '') ;
}
}
}
}