Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2017-09-04 22:54:04 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2017-09-14 22:48:54 +0300
commite2e868f8b6370b058460d3260cd32765eda34406 (patch)
tree60d47c5fa67d2e3c372024b22d12e02494961350 /lib
parent722a1bcf626f4ae8e491067f1ecd16250065deb3 (diff)
Change icon prefix from 'ico-' to 'icon-'
Diffstat (limited to 'lib')
-rw-r--r--lib/Service/CollectionsService.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Service/CollectionsService.php b/lib/Service/CollectionsService.php
index 66a16953..35b9925b 100644
--- a/lib/Service/CollectionsService.php
+++ b/lib/Service/CollectionsService.php
@@ -50,32 +50,32 @@ class CollectionsService {
'id' => "starred",
'displayname' => (string)$this->l10n->t('Important'),
'show' => 2,
- 'icon' => 'ico-star'),
+ 'icon' => 'icon-task-star'),
array(
'id' => "today",
'displayname' => (string)$this->l10n->t('Today'),
'show' => 2,
- 'icon' => 'ico-calendar'),
+ 'icon' => 'icon-calendar'),
array(
'id' => "week",
'displayname' => (string)$this->l10n->t('Week'),
'show' => 2,
- 'icon' => 'ico-calendar'),
+ 'icon' => 'icon-calendar'),
array(
'id' => "all",
'displayname' => (string)$this->l10n->t('All'),
'show' => 2,
- 'icon' => 'ico-all'),
+ 'icon' => 'icon-all'),
array(
'id' => "current",
'displayname' => (string)$this->l10n->t('Current'),
'show' => 2,
- 'icon' => 'ico-current'),
+ 'icon' => 'icon-current'),
array(
'id' => "completed",
'displayname' => (string)$this->l10n->t('Completed'),
'show' => 2,
- 'icon' => 'ico-checkmark')
+ 'icon' => 'icon-checkmark')
);
foreach ($collections as $key => $collection){
$tmp = $this->settings->getUserValue($this->userId, $this->appName,'show_'.$collection['id']);