- Status changed to RTBC
almost 2 years ago 6:38am 2 May 2023 This patch is working. The spelling is corrected, moving it to RTBC.
The officehours_permissions.module file contains the following hook.
function officehours_permissions_permission() {
return array(
'update task information' => array(
'title' => t('Update task information'),
),
'update any task attempt' => array(
'title' => t('Update any task attempt'),
),
'set task status' => array(
'title' => t('Set task status'),
),
'create published tasks' => array(
'title' => t('Create published task'),
'description' => t('Tasks will be publshed on creation. (Tasks are unpublished by default.)'),
),
);
}
The last description starts with Tasks will be publshed on creation. It should be Tasks will be published on creation.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
This patch is working. The spelling is corrected, moving it to RTBC.