Skip to content

Commit

Permalink
Fix bug cactioncomm class
Browse files Browse the repository at this point in the history
  • Loading branch information
Herve Prot committed Aug 6, 2011
1 parent f90bf81 commit 09ed5bd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion htdocs/comm/action/class/cactioncomm.class.php
Expand Up @@ -175,7 +175,10 @@ function getNomUrl($withpicto=0)

// Check if translation available
$transcode=$langs->trans("Action".$this->code);
if ($transcode != "Action".$this->code) return $transcode;
if ($transcode != "Action".$this->code)
return $transcode;
else
return $this->libelle;
}

}
Expand Down
2 changes: 1 addition & 1 deletion htdocs/custom/highCharts
Submodule highCharts updated from 1bcc2c to 7c08b5
2 changes: 1 addition & 1 deletion htdocs/custom/team
Submodule team updated from 7bc643 to 9c169f

0 comments on commit 09ed5bd

Please sign in to comment.