summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--db/feed.php2
-rw-r--r--js/Gruntfile.js3
2 files changed, 3 insertions, 2 deletions
diff --git a/db/feed.php b/db/feed.php
index 72df6122e..c5b76656e 100644
--- a/db/feed.php
+++ b/db/feed.php
@@ -96,7 +96,7 @@ class Feed extends Entity implements IAPI, \JsonSerializable {
$url = substr($url, 4);
}
- $serialized['cssClass'] = str_replace('.', '-', $url);
+ $serialized['cssClass'] = 'custom-' . str_replace('.', '-', $url);
return $serialized;
}
diff --git a/js/Gruntfile.js b/js/Gruntfile.js
index 71f2fea30..f82b86bb1 100644
--- a/js/Gruntfile.js
+++ b/js/Gruntfile.js
@@ -135,7 +135,8 @@ module.exports = function (grunt) {
dir: '../tests'
},
options: {
- colors: true
+ colors: true,
+ configuration: '../phpunit.xml'
}
},
protractor_webdriver: {