fixed bad hash nav implementation

This commit is contained in:
Bachir Soussi Chiadmi
2015-05-12 16:44:34 +02:00
parent 9446d0b76f
commit ba7d7ff3c3
4 changed files with 50 additions and 13 deletions
@@ -0,0 +1,13 @@
<?php
/**
* Implements hook_token_info()
*/
function token_test_token_info() {
$info['tokens']['node']['colons:in:name'] = array(
'name' => t('A test token with colons in the name'),
'description' => NULL,
);
return $info;
}