poke basic config setting
This commit is contained in:
parent
c598bbb8a9
commit
18208fab84
@ -968,6 +968,12 @@ function get_poke_verbs() {
|
||||
// index is present tense verb
|
||||
// value is array containing past tense verb, translation of present, translation of past
|
||||
|
||||
if(get_config('system','poke_basic')) {
|
||||
$arr = array(
|
||||
'poke' => array( 'poked', t('poke'), t('poked')),
|
||||
);
|
||||
}
|
||||
else {
|
||||
$arr = array(
|
||||
'poke' => array( 'poked', t('poke'), t('poked')),
|
||||
'ping' => array( 'pinged', t('ping'), t('pinged')),
|
||||
@ -978,6 +984,8 @@ function get_poke_verbs() {
|
||||
);
|
||||
|
||||
call_hooks('poke_verbs', $arr);
|
||||
}
|
||||
|
||||
return $arr;
|
||||
}
|
||||
|
||||
|
@ -1 +1 @@
|
||||
2016-02-03.1298H
|
||||
2016-02-04.1299H
|
||||
|
Reference in New Issue
Block a user