[Solved] Missing printer icon in overdue-invoices table at dashboard

hi,

a minor bug with a trivial fix: the printer icon is missing in the overdue-invoices table at the dashboard because it has the wrong css style class. The fix is to replace <i class="icon ion-printer" with <i class="fa fa-print".

Patch for v. 1.1.1:

--- ~current_InvoicePlane/application/modules/dashboard/views/index.php
+++ ~new_InvoicePlane/application/modules/dashboard/views/index.php
@@ -157,7 +157,7 @@
                                 <td style="text-align: center;">
                                     <a href="<?php echo site_url('invoices/generate_pdf/' . $invoice->invoice_id); ?>"
                                        title="<?php echo lang('download_pdf'); ?>">
-                                        <i class="icon ion-printer"></i>
+                                        <i class="fa fa-print"></i>
                                     </a>
                                 </td>
                             </tr>

Miquel

Solved with commit e35177a
Will be included in release v1.1.2