diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-11 20:36:42 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-11 20:36:42 -0400 |
commit | 8dd68247349c8df89408b41de37b3dc144712a48 (patch) | |
tree | 47331eef846aa5d2b4ff8392d0f76b39f9cf93ac /app/Template/notification | |
parent | e22da9d32addefa8d739171febcf6f6d0c06ba7b (diff) |
Fix notification template issues
Diffstat (limited to 'app/Template/notification')
-rw-r--r-- | app/Template/notification/comment_create.php (renamed from app/Template/notification/comment_creation.php) | 0 | ||||
-rw-r--r-- | app/Template/notification/file_create.php (renamed from app/Template/notification/file_creation.php) | 0 | ||||
-rw-r--r-- | app/Template/notification/subtask_create.php (renamed from app/Template/notification/subtask_creation.php) | 0 | ||||
-rw-r--r-- | app/Template/notification/task_create.php (renamed from app/Template/notification/task_creation.php) | 6 |
4 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/notification/comment_creation.php b/app/Template/notification/comment_create.php index 747c4f43..747c4f43 100644 --- a/app/Template/notification/comment_creation.php +++ b/app/Template/notification/comment_create.php diff --git a/app/Template/notification/file_creation.php b/app/Template/notification/file_create.php index 63f7d1b8..63f7d1b8 100644 --- a/app/Template/notification/file_creation.php +++ b/app/Template/notification/file_create.php diff --git a/app/Template/notification/subtask_creation.php b/app/Template/notification/subtask_create.php index e1c62b73..e1c62b73 100644 --- a/app/Template/notification/subtask_creation.php +++ b/app/Template/notification/subtask_create.php diff --git a/app/Template/notification/task_creation.php b/app/Template/notification/task_create.php index 0905d3f5..1d834d44 100644 --- a/app/Template/notification/task_creation.php +++ b/app/Template/notification/task_create.php @@ -9,14 +9,14 @@ <strong><?= dt('Must be done before %B %e, %Y', $task['date_due']) ?></strong> </li> <?php endif ?> - <?php if ($task['creator_username']): ?> + <?php if (! empty($task['creator_username'])): ?> <li> <?= t('Created by %s', $task['creator_name'] ?: $task['creator_username']) ?> </li> <?php endif ?> <li> <strong> - <?php if ($task['assignee_username']): ?> + <?php if (! empty($task['assignee_username'])): ?> <?= t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) ?> <?php else: ?> <?= t('There is nobody assigned') ?> @@ -28,7 +28,7 @@ <strong><?= $this->e($task['column_title']) ?></strong> </li> <li><?= t('Task position:').' '.$this->e($task['position']) ?></li> - <?php if ($task['category_name']): ?> + <?php if (! empty($task['category_name'])): ?> <li> <?= t('Category:') ?> <strong><?= $this->e($task['category_name']) ?></strong> </li> |