bug fixes and item management improvements

This commit is contained in:
Dennis Eichhorn 2023-05-24 18:11:38 +00:00
parent 563987c976
commit 9bf4525c25
3 changed files with 10 additions and 3 deletions

View File

@ -74,6 +74,13 @@ return ['Tasks' => [
'Upload' => 'Upload',
'Week' => 'Week',
'Year' => 'Year',
'YourOpen' => 'Your Open',
'OpenGiven' => 'Open Given',
'All' => 'All',
'For' => 'For',
'UnreadChanges' => 'Unread Changes',
'Unread' => 'Unread',
'Overview' => 'Overview',
'forwarded_to' => 'forwarded to',
'priority_change' => '%s set the priority on %s to',
'status_change' => '%s set the status on %s to',

View File

@ -157,7 +157,7 @@ echo $this->getData('nav')->render(); ?>
<div class="row">
<div class="col-xs-12">
<div class="portlet">
<div class="portlet-head"><?= $this->getHtml('AllTasks'); ?><i class="fa fa-download floatRight download btn"></i></div>
<div class="portlet-head"><?= $this->getHtml('All'); ?><i class="fa fa-download floatRight download btn"></i></div>
<div class="slider">
<table id="taskList" class="default sticky">
<thead>

View File

@ -74,10 +74,10 @@ class TaskView extends View
->execute();
if ($profile->id === 0 || $profile->image->getPath() === '') {
return UriFactory::build('{/base}/' . $this->defaultProfileImage->getPath());
return UriFactory::build($this->defaultProfileImage->getPath());
}
return UriFactory::build('{/base}/' . $profile->image->getPath());
return UriFactory::build($profile->image->getPath());
}
/**