summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio <silvio@socioambiental.org>2013-07-22 16:07:37 -0300
committerSilvio <silvio@socioambiental.org>2013-07-22 16:07:37 -0300
commit6679d0460fc88847c492dd13761180fcc1377b51 (patch)
tree0f2c0e0a2862e528f76f7c110b261a06471c3aa4
parentd54daa4b81982988f1cf2bfe91168aed0447593c (diff)
downloadtimelinejs-6679d0460fc88847c492dd13761180fcc1377b51.tar.gz
timelinejs-6679d0460fc88847c492dd13761180fcc1377b51.tar.bz2
Fixing hook_requirements()
-rw-r--r--timelinejs.install6
1 files changed, 3 insertions, 3 deletions
diff --git a/timelinejs.install b/timelinejs.install
index c2fd4a1..8db50d3 100644
--- a/timelinejs.install
+++ b/timelinejs.install
@@ -15,9 +15,9 @@ function timelinejs_requirements($phase) {
$timelinejs = libraries_get_path('timelinejs');
if (!is_dir($timelinejs)) {
$requirements['timelinejs'] = array(
- 'title' => $t('TimelineJS'),
- 'value' => $t('Could not find timelinejs installation at libraries folder.'),
- 'description' => $t('Please download it from https://github.com/VeriteCo/Timeline'),
+ 'title' => t('TimelineJS'),
+ 'value' => t('Could not find timelinejs installation at libraries folder.'),
+ 'description' => t('Please download it from https://github.com/VeriteCo/Timeline'),
'severity' => REQUIREMENT_ERROR,
);
}