Fix HTML5 use of <br> is preferred to <br />

This commit is contained in:
Laurent Destailleur
2017-09-15 23:49:04 +02:00
parent ffb3823655
commit 8773a6860f
28 changed files with 156 additions and 157 deletions

View File

@@ -286,7 +286,7 @@ class PrestaShopWebservice
* $xml = $ws->get(array('resource' => 'orders', 'id' => 1));
* // Here in $xml, a SimpleXMLElement object you can parse
* foreach ($xml->children()->children() as $attName => $attValue)
* echo $attName.' = '.$attValue.'<br />';
* echo $attName.' = '.$attValue.'<br>';
* }
* catch (PrestaShopWebserviceException $ex)
* {