diff options
Diffstat (limited to 'app/Template/project_overview')
-rw-r--r-- | app/Template/project_overview/columns.php | 2 | ||||
-rw-r--r-- | app/Template/project_overview/description.php | 2 | ||||
-rw-r--r-- | app/Template/project_overview/files.php | 8 | ||||
-rw-r--r-- | app/Template/project_overview/information.php | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/app/Template/project_overview/columns.php b/app/Template/project_overview/columns.php index 870d753f..cc5782bd 100644 --- a/app/Template/project_overview/columns.php +++ b/app/Template/project_overview/columns.php @@ -2,7 +2,7 @@ <?php foreach ($project['columns'] as $column): ?> <div class="project-overview-column"> <strong title="<?= t('Task count') ?>"><?= $column['nb_tasks'] ?></strong><br> - <span><?= $this->e($column['title']) ?></span> + <span><?= $this->text->e($column['title']) ?></span> </div> <?php endforeach ?> </div> diff --git a/app/Template/project_overview/description.php b/app/Template/project_overview/description.php index 4137bf9f..cd6e2450 100644 --- a/app/Template/project_overview/description.php +++ b/app/Template/project_overview/description.php @@ -1,6 +1,6 @@ <?php if (! empty($project['description'])): ?> <div class="page-header"> - <h2><?= $this->e($project['name']) ?></h2> + <h2><?= $this->text->e($project['name']) ?></h2> </div> <article class="markdown"> <?= $this->text->markdown($project['description']) ?> diff --git a/app/Template/project_overview/files.php b/app/Template/project_overview/files.php index 7eb8c762..605431ed 100644 --- a/app/Template/project_overview/files.php +++ b/app/Template/project_overview/files.php @@ -18,11 +18,11 @@ <div class="file-thumbnails"> <?php foreach ($images as $file): ?> <div class="file-thumbnail"> - <a href="<?= $this->url->href('FileViewer', 'show', array('project_id' => $project['id'], 'file_id' => $file['id'])) ?>" class="popover"><img src="<?= $this->url->href('FileViewer', 'thumbnail', array('file_id' => $file['id'], 'project_id' => $project['id'])) ?>" title="<?= $this->e($file['name']) ?>" alt="<?= $this->e($file['name']) ?>"></a> + <a href="<?= $this->url->href('FileViewer', 'show', array('project_id' => $project['id'], 'file_id' => $file['id'])) ?>" class="popover"><img src="<?= $this->url->href('FileViewer', 'thumbnail', array('file_id' => $file['id'], 'project_id' => $project['id'])) ?>" title="<?= $this->text->e($file['name']) ?>" alt="<?= $this->text->e($file['name']) ?>"></a> <div class="file-thumbnail-content"> <div class="file-thumbnail-title"> <div class="dropdown"> - <a href="#" class="dropdown-menu dropdown-menu-link-text"><?= $this->e($file['name']) ?> <i class="fa fa-caret-down"></i></a> + <a href="#" class="dropdown-menu dropdown-menu-link-text"><?= $this->text->e($file['name']) ?> <i class="fa fa-caret-down"></i></a> <ul> <li> <i class="fa fa-download fa-fw"></i> @@ -62,7 +62,7 @@ <td> <i class="fa <?= $this->file->icon($file['name']) ?> fa-fw"></i> <div class="dropdown"> - <a href="#" class="dropdown-menu dropdown-menu-link-text"><?= $this->e($file['name']) ?> <i class="fa fa-caret-down"></i></a> + <a href="#" class="dropdown-menu dropdown-menu-link-text"><?= $this->text->e($file['name']) ?> <i class="fa fa-caret-down"></i></a> <ul> <?php if ($this->file->getPreviewType($file['name']) !== null): ?> <li> @@ -84,7 +84,7 @@ </div> </td> <td> - <?= $this->e($file['user_name'] ?: $file['username']) ?> + <?= $this->text->e($file['user_name'] ?: $file['username']) ?> </td> <td> <?= $this->dt->date($file['date']) ?> diff --git a/app/Template/project_overview/information.php b/app/Template/project_overview/information.php index 12a1317d..95508d98 100644 --- a/app/Template/project_overview/information.php +++ b/app/Template/project_overview/information.php @@ -4,7 +4,7 @@ <div class="listing"> <ul> <?php if ($project['owner_id'] > 0): ?> - <li><?= t('Project owner: ') ?><strong><?= $this->e($project['owner_name'] ?: $project['owner_username']) ?></strong></li> + <li><?= t('Project owner: ') ?><strong><?= $this->text->e($project['owner_name'] ?: $project['owner_username']) ?></strong></li> <?php endif ?> <?php if (! empty($users)): ?> |