Add a constant BUTTONADD

This commit is contained in:
Dany De Bontridder 2015-08-18 10:19:33 +02:00
parent 69bbdaab4f
commit 4d9145932a
2 changed files with 2 additions and 1 deletions

View file

@ -70,6 +70,7 @@ $g_captcha=false;
$g_failed="<span style=\"font-size:18px;color:red\">&#x2716;</span>";
$g_succeed="<span style=\"font-size:18px;color:green\">&#x2713;</span>";
define ('SMALLX','&#x2D5D;');
define ('BUTTONADD',"&#10010;");
/* uncomment for development */

View file

@ -46,7 +46,7 @@ for ($i=0;$i<$nb_dossier;$i++):
<tr id="row_db_<?php echo $a_dossier[$i]['dos_id'];?>" class="<?php echo $class?>">
<td>
<?php
echo HtmlInput::button('add_folder','&#10010;', " onclick=\"folder_add({$user_id},{$a_dossier[$i]['dos_id']});\"", ' smallbutton');
echo HtmlInput::button('add_folder',BUTTONADD, " onclick=\"folder_add({$user_id},{$a_dossier[$i]['dos_id']});\"", ' smallbutton');
?>
</td>