added spaces

Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2017-04-14 15:30:50 +02:00
parent be59fe86e5
commit f2f20c85d5
No known key found for this signature in database
GPG key ID: B72F8185C6C7BD78
2 changed files with 8 additions and 8 deletions

View file

@ -1416,9 +1416,9 @@ function conv_sort($arr, $order) {
}
if (stristr($order, 'created')) {
usort($parents,'sort_thr_created');
usort($parents, 'sort_thr_created');
} elseif (stristr($order, 'commented')) {
usort($parents,'sort_thr_commented');
usort($parents, 'sort_thr_commented');
}
if (count($parents)) {
@ -1532,19 +1532,19 @@ function get_responses($conv_responses, $response_verbs, $ob, $item) {
function get_response_button_text($v, $count) {
switch ($v) {
case 'like':
return tt('Like','Likes', $count,'noun');
return tt('Like', 'Likes', $count, 'noun');
break;
case 'dislike':
return tt('Dislike','Dislikes', $count,'noun');
return tt('Dislike', 'Dislikes', $count, 'noun');
break;
case 'attendyes':
return tt('Attending','Attending', $count,'noun');
return tt('Attending', 'Attending', $count, 'noun');
break;
case 'attendno':
return tt('Not Attending','Not Attending', $count,'noun');
return tt('Not Attending', 'Not Attending', $count, 'noun');
break;
case 'attendmaybe':
return tt('Undecided','Undecided', $count,'noun');
return tt('Undecided', 'Undecided', $count, 'noun');
break;
}
}

View file

@ -74,7 +74,7 @@ function cron_run(&$argv, &$argc){
proc_run(PRIORITY_LOW, "include/discover_poco.php", "suggestions");
set_config('system', 'last_expire_day',$d2);
set_config('system', 'last_expire_day', $d2);
proc_run(PRIORITY_LOW, 'include/expire.php');