Skip to content

Commit

Permalink
fix typo error
Browse files Browse the repository at this point in the history
  • Loading branch information
grandoc committed Nov 26, 2018
1 parent 05d617b commit 8722cce
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion htdocs/projet/activity/perday.php
Expand Up @@ -544,7 +544,7 @@
print '<td class="center"></td>';
print "</tr>\n";

$colspan = 6+(empty($conf->global->PROJECT_TIMESHEET_DISABLEBREAK_ON_PROJECT)?0:2);;
$colspan = 6+(empty($conf->global->PROJECT_TIMESHEET_DISABLEBREAK_ON_PROJECT)?0:2);

if ($conf->use_javascript_ajax)
{
Expand Down
2 changes: 1 addition & 1 deletion htdocs/public/payment/newpayment.php
Expand Up @@ -642,7 +642,7 @@
dol_print_error_email('BADREFINPAYMENTFORM', $langs->trans("ErrorBadLinkSourceSetButBadValueForRef", $source, $ref));
// End of page
llxFooter();
$db->close();;
$db->close();
exit;
}

Expand Down
4 changes: 2 additions & 2 deletions htdocs/societe/checkvat/checkVatPopup.php
Expand Up @@ -57,7 +57,7 @@
$vatNumber = preg_replace('/\^\w/', '', $vatNumber);
$countryCode=substr($vatNumber,0,2);
$vatNumber=substr($vatNumber,2);

print '<b>'.$langs->trans("Country").'</b>: '.$countryCode.'<br>';
print '<b>'.$langs->trans("VATIntraShort").'</b>: '.$vatNumber.'<br>';
print '<br>';
Expand Down Expand Up @@ -176,4 +176,4 @@

// End of page
llxFooter();
$db->close();;
$db->close();
6 changes: 3 additions & 3 deletions htdocs/stripe/class/actions_stripe.class.php
Expand Up @@ -25,7 +25,7 @@
* \ingroup stripe
* \brief File Class actionsstripeconnect
*/
require_once DOL_DOCUMENT_ROOT.'/stripe/class/stripe.class.php';;
require_once DOL_DOCUMENT_ROOT.'/stripe/class/stripe.class.php';


$langs->load("stripe@stripe");
Expand All @@ -44,8 +44,8 @@ class ActionsStripeconnect
private $config=array();

// For Hookmanager return
var $resprints;
var $results=array();
public $resprints;
public $results=array();


/**
Expand Down

0 comments on commit 8722cce

Please sign in to comment.