To many non-breaking spaces in order details page

Too many :?



Version 3.0.4.

Just found out that there are a few double spaces in the view order details page. The line where order#, invoice#, customer and orderdate are, see attached image. Top one is original, bottom is edited.



This is because of some misplaced non-breaking spaces in file skins<skinname>\admin\views\orders\details.tpl



From line 62:

Original

<br />
{$lang.order}&nbsp;&nbsp;<span>#{$order_info.order_id}</span>&nbsp;{if $order_info.company_id}({$lang.vendor}: {$order_info.company_id|fn_get_company_name}){/if}<br />
  {if $status_settings.appearance_type == "I" && $order_info.doc_ids[$status_settings.appearance_type]}<br />
  ({$lang.invoice}&nbsp;&nbsp;<span>#{$order_info.doc_ids[$status_settings.appearance_type]}</span>)&nbsp;<br />
  {elseif $status_settings.appearance_type == "C" && $order_info.doc_ids[$status_settings.appearance_type]}<br />
  ({$lang.credit_memo}&nbsp;<span>#{$order_info.doc_ids[$status_settings.appearance_type]}</span>)&nbsp;<br />
  {/if}<br />
  {$lang.by}&nbsp;&nbsp;<span>{if $order_info.user_id}<a href="{"profiles.update?user_id=`$order_info.user_id`"|fn_url}">{/if}{$order_info.firstname}&nbsp;{$order_info.lastname}{if $order_info.user_id}</a>{/if}</span>&nbsp;<br />
  {assign var="timestamp" value=$order_info.timestamp|date_format:"`$settings.Appearance.date_format`"|escape:url}<br />
  {$lang.on}&nbsp;<a href="{"orders.manage?period=C&time_from=`$timestamp`&time_to=`$timestamp`"|fn_url}">{$order_info.timestamp|date_format:"`$settings.Appearance.date_format`"}</a>,&nbsp;&nbsp;{$order_info.timestamp|date_format:"`$settings.Appearance.time_format`"}<br />

```<br />
Edited<br />
```php
<br />
{$lang.order}&nbsp;<span>#{$order_info.order_id}</span>{if $order_info.company_id}&nbsp;({$lang.vendor}: {$order_info.company_id|fn_get_company_name}){/if}<br />
  {if $status_settings.appearance_type == "I" && $order_info.doc_ids[$status_settings.appearance_type]}<br />
   ({$lang.invoice}&nbsp;<span>#{$order_info.doc_ids[$status_settings.appearance_type]}</span>)<br />
  {elseif $status_settings.appearance_type == "C" && $order_info.doc_ids[$status_settings.appearance_type]}<br />
   &nbsp;({$lang.credit_memo}&nbsp;<span>#{$order_info.doc_ids[$status_settings.appearance_type]}</span>)&nbsp;<br />
  {/if}<br />
  {$lang.by}&nbsp;<span>{if $order_info.user_id}<a href="{"profiles.update?user_id=`$order_info.user_id`"|fn_url}">{/if}{$order_info.firstname}&nbsp;{$order_info.lastname}{if $order_info.user_id}</a>{/if}</span>&nbsp;<br />
  {assign var="timestamp" value=$order_info.timestamp|date_format:"`$settings.Appearance.date_format`"|escape:url}<br />
  {$lang.on}&nbsp;<a href="{"orders.manage?period=C&time_from=`$timestamp`&time_to=`$timestamp`"|fn_url}">{$order_info.timestamp|date_format:"`$settings.Appearance.date_format`"}</a>,&nbsp;{$order_info.timestamp|date_format:"`$settings.Appearance.time_format`"}<br />

```<p><a href="127.0.0.1/uploads/monthly_03_2013/post-8788-0-34736200-1362138590.png">oderdetailsspaces.png</a></p>