diff options
author | Silvio <silvio@socioambiental.org> | 2013-07-22 16:07:37 -0300 |
---|---|---|
committer | Silvio <silvio@socioambiental.org> | 2013-07-22 16:07:37 -0300 |
commit | 6679d0460fc88847c492dd13761180fcc1377b51 (patch) | |
tree | 0f2c0e0a2862e528f76f7c110b261a06471c3aa4 /timelinejs.install | |
parent | d54daa4b81982988f1cf2bfe91168aed0447593c (diff) | |
download | timelinejs-6679d0460fc88847c492dd13761180fcc1377b51.tar.gz timelinejs-6679d0460fc88847c492dd13761180fcc1377b51.tar.bz2 |
Fixing hook_requirements()
Diffstat (limited to 'timelinejs.install')
-rw-r--r-- | timelinejs.install | 6 |
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, ); } |