diff options
author | Camil Staps | 2015-03-11 11:03:44 +0100 |
---|---|---|
committer | Camil Staps | 2015-03-11 11:03:44 +0100 |
commit | fa9d166f7e840d0e1a83809c5f58d85ee3b715a0 (patch) | |
tree | f45eb18522db23006d0f5a3359924369d4782c71 /include/home.php | |
parent | Prices on active offers (diff) |
Valuta icon in timeline is now an option
Diffstat (limited to 'include/home.php')
-rw-r--r-- | include/home.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/home.php b/include/home.php index 0f55ede..e0e7b69 100644 --- a/include/home.php +++ b/include/home.php @@ -301,7 +301,7 @@ require('header.php'); case 'start': echo "<div class='timeline-badge info' title='{$item['description']}'><i class='fa fa-circle-o-notch'></i></div>"; break; case 'end': echo "<div class='timeline-badge primary' title='{$item['description']}'><i class='fa fa-circle-o'></i></div>"; break; case 'invoice': echo "<div class='timeline-badge warning' title='{$item['description']}'><i class='fa fa-check-circle-o'></i></div>"; break; - case 'payment_received': echo "<div class='timeline-badge success' title='{$item['description']}'><i class='fa fa-eur'></i></div>"; break; + case 'payment_received': echo "<div class='timeline-badge success' title='{$item['description']}'><i class='fa fa-".constants::fa_valuta."'></i></div>"; break; } echo "<div class='timeline-panel'>"; echo "<div class='timeline-heading'><h4 class='timeline-title'>#{$item['id']} to {$item['contact']}: {$item['description']}</h4><p><small class='text-muted'><i class='fa fa-clock-o fa-fw'></i> ".BusinessAdmin::formatDate($item['time'],false,true,true)."</small></p></div>"; |