Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/3.7' into develop
Browse files Browse the repository at this point in the history
Conflicts:
	htdocs/core/lib/security.lib.php
	htdocs/product/stock/mouvement.php
  • Loading branch information
eldy committed Aug 20, 2015
2 parents 4541d18 + da8e71b commit 15ab9c0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -238,6 +238,7 @@ FIX: Not showing delivery date on rouget pdf
FIX: Not showing task extrafields when creating from left menu
FIX [ bug #3288 ] Tasks box is not properly drawn
FIX [ bug #3211 ] Outstading bill amount of a client showed wrong amounts
FIX [ bug #3321 ] Users with certain permissions were shown a "forbidden access" page even if they had the rights

NEW: Created new ContratLigne::insert function

Expand Down
2 changes: 1 addition & 1 deletion build.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Script build for hudson CI -->
<project name="dolibarr" default="hudson" basedir=".">
fdfds
<!-- Exclude/ignore paths -->
<property name="ignorepaths" value="${basedir}/htdocs/conf,${basedir}/htdocs/core/filemanagerdol,${basedir}/htdocs/includes" />
<property name="ignoreregexp" value="**/PEAR/*,**/NET/*,**/HTTP/*,**/zendgdata/*,**/reportico/*" />
Expand Down
4 changes: 1 addition & 3 deletions htdocs/product/stock/mouvement.php
Expand Up @@ -498,7 +498,6 @@
print "</tr>\n";

// Lignes des champs de filtre

print '<tr class="liste_titre">';
print '<td class="liste_titre" valign="right">';
print '<input class="flat" type="text" size="2" maxlength="2" placeholder="'.dol_escape_htmltag($langs->trans("Month")).'" name="month" value="'.$month.'">';
Expand Down Expand Up @@ -549,7 +548,6 @@
print '<input type="image" class="liste_titre" src="'.img_picto($langs->trans("Search"),'searchclear.png','','',1).'" name="button_removefilter" value="'.dol_escape_htmltag($langs->trans("RemoveFilter")).'" title="'.dol_escape_htmltag($langs->trans("RemoveFilter")).'">';
print '</td>';
print "</tr>\n";
print '</form>';

$arrayofuniqueproduct=array();

Expand Down Expand Up @@ -621,7 +619,7 @@
}
$db->free($resql);

print "</table><br>";
print "</table></form><br>";

// Add number of product when there is a filter on period
if (count($arrayofuniqueproduct) == 1 && is_numeric($year))
Expand Down
2 changes: 1 addition & 1 deletion htdocs/societe/class/societe.class.php
Expand Up @@ -709,7 +709,7 @@ function update($id, $user='', $call_trigger=1, $allowmodcodeclient=0, $allowmod
$this->localtax2_value=trim($this->localtax2_value);

$this->capital=price2num(trim($this->capital),'MT');
if (empty($this->capital)) $this->capital = 0;
if (empty($this->capital) || ! is_numeric($this->capital)) $this->capital = 0;

$this->effectif_id=trim($this->effectif_id);
$this->forme_juridique_code=trim($this->forme_juridique_code);
Expand Down
2 changes: 1 addition & 1 deletion htdocs/user/card.php
Expand Up @@ -725,7 +725,7 @@
print '<form action="'.$_SERVER['PHP_SELF'].'" method="POST" name="createuser">';
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
print '<input type="hidden" name="action" value="add">';
if (! empty($ldap_sid)) print '<input type="hidden" name="ldap_sid" value="'.$ldap_sid.'">';
if (! empty($ldap_sid)) print '<input type="hidden" name="ldap_sid" value="'.dol_escape_htmltag($ldap_sid).'">';
print '<input type="hidden" name="entity" value="'.$conf->entity.'">';

dol_fiche_head('', '', '', 0, '');
Expand Down

0 comments on commit 15ab9c0

Please sign in to comment.