summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.htaccess7
-rw-r--r--ChangeLog86
-rw-r--r--app/Helper/ProjectRoleHelper.php2
-rw-r--r--app/Template/activity/project.php2
4 files changed, 57 insertions, 40 deletions
diff --git a/.htaccess b/.htaccess
index 0d873f58..9da74f57 100644
--- a/.htaccess
+++ b/.htaccess
@@ -6,4 +6,11 @@
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
+
+ ############################
+ ## Uncomment the two lines below to enable force HTTPS capabilities
+ ############################
+
+ # RewriteCond %{HTTPS} !=on
+ # RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
</IfModule>
diff --git a/ChangeLog b/ChangeLog
index 7c653483..dd42b485 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
-Version 1.0.35
---------------
+Version 1.0.36 (unreleased)
+---------------------------
+
+New features:
+
+Improvements:
+
+Bug fixes:
+
+
+Version 1.0.35 (Dec 4, 2016)
+----------------------------
New features:
@@ -32,8 +42,8 @@ Bug fixes:
* Fix link generation when user mention is followed by a punctuation mark
* Make user mentions works again
-Version 1.0.34
---------------
+Version 1.0.34 (Oct 11, 2016)
+-----------------------------
New features:
@@ -64,8 +74,8 @@ Bug fixes:
* Do not show closed tasks in task move position form
* Avoid "Controller not found" in Settings > Links
-Version 1.0.33
---------------
+Version 1.0.33 (Sep 5, 2016)
+----------------------------
New features:
@@ -107,8 +117,8 @@ Bug fixes:
* Fix wrong project date format (shown as 01/01/1970)
- If the dates still not correct, modify and save the date
-Version 1.0.32
---------------
+Version 1.0.32 (July 31, 2016)
+------------------------------
New features:
@@ -148,8 +158,8 @@ Bug fixes:
* Fixed Markdown editor auto-grow on the task form (Safari)
* Fixed compatibility issue with PHP 5.3 for OAuthUserProvider class
-Version 1.0.31
---------------
+Version 1.0.31 (Jul 3, 2016)
+----------------------------
New features:
@@ -186,8 +196,8 @@ Breaking changes:
* Docker volume paths are changed to /var/www/app/{data,plugins}
-Version 1.0.30
---------------
+Version 1.0.30 (Jun 8, 2016)
+----------------------------
Improvements:
@@ -199,8 +209,8 @@ Bug fixes:
* Fixed plural form in alert message
* Fixed CSS cosmetic issue with popover and tooltips
-Version 1.0.29
---------------
+Version 1.0.29 (Jun 5, 2016)
+----------------------------
New features:
@@ -241,8 +251,8 @@ Breaking changes:
* All controllers have been renamed, people who are not using URL rewriting will see different URLs
* All models have been renamed, plugin maintainers will have to update their plugins
-Version 1.0.28
---------------
+Version 1.0.28 (May 8, 2016)
+----------------------------
New features:
@@ -284,8 +294,8 @@ Bug fixes:
* Fixed form submission with Meta+Enter keyboard shortcut
* Removed PHP notices in comment suppression view
-Version 1.0.27
---------------
+Version 1.0.27 (Mar 27, 2016)
+-----------------------------
New features:
@@ -329,8 +339,8 @@ Bug fixes:
* Fix invalid user filter for API procedure createLdapUser()
* Ambiguous column name with very old version of Sqlite
-Version 1.0.26
---------------
+Version 1.0.26 (Feb 28, 2016)
+-----------------------------
Breaking changes:
@@ -362,8 +372,8 @@ Bug fixes:
* Fix filter dropdown not accessible when there are too many items
* Fix regression: unable to change project in "task move/duplicate to another project"
-Version 1.0.25
---------------
+Version 1.0.25 (Feb 7, 2016)
+----------------------------
Breaking changes:
@@ -409,8 +419,8 @@ Bug fixes:
* Category label is broken on the board if there's a url in the description
* Fix pagination on task time tracking page
-Version 1.0.24
---------------
+Version 1.0.24 (Jan 23, 2016)
+-----------------------------
New features:
@@ -451,8 +461,8 @@ Bug fixes:
* Unable to unassign a task from the API
* Revert back previous optimizations of TaskPosition (incompatibility with some environment)
-Version 1.0.23
---------------
+Version 1.0.23 (Jan 9, 2016)
+----------------------------
Breaking changes:
@@ -486,8 +496,8 @@ Bug fixes:
* Fix pagination in group members listing
* Avoid PHP error when enabling LDAP group provider with PHP < 5.5
-Version 1.0.22
---------------
+Version 1.0.22 (Dec 13, 2015)
+-----------------------------
Breaking changes:
@@ -516,8 +526,8 @@ New features:
* Add capability to reopen Gitlab issues
* Try to load config.php from /data if not available
-Version 1.0.21
---------------
+Version 1.0.21 (Nov 22, 2015)
+-----------------------------
Breaking changes:
@@ -555,8 +565,8 @@ Bug fixes:
* Make CSV export compatible with PHP 5.3
* Avoid Safari to append .html at the end of downloaded files
-Version 1.0.20
---------------
+Version 1.0.20 (Oct 24, 2015)
+-----------------------------
Breaking changes:
@@ -582,8 +592,8 @@ Bug fixes:
* People should not see any tasks during a search when they are not associated to a project
* Avoid disabling the default swimlane during renaming when there is no other activated swimlane
-Version 1.0.19
---------------
+Version 1.0.19 (Oct 11, 2015)
+-----------------------------
New features:
@@ -646,8 +656,8 @@ Bug fixes:
* Fix Postgres issue "Cardinality violation" when there is multiple "is_milestone_of" links
* Fix issue with due date greater than year 2038
-Version 1.0.18
---------------
+Version 1.0.18 (Aug 30, 2015)
+-----------------------------
New features:
@@ -693,8 +703,8 @@ Bug fixes:
* Fix screenshot feature with Firefox 40
* Fix bug when uploading files with Cyrilic characters
-Version 1.0.17
---------------
+Version 1.0.17 (Jul 27, 2015)
+-----------------------------
New features:
diff --git a/app/Helper/ProjectRoleHelper.php b/app/Helper/ProjectRoleHelper.php
index 5c80d42b..6f9cf10c 100644
--- a/app/Helper/ProjectRoleHelper.php
+++ b/app/Helper/ProjectRoleHelper.php
@@ -35,7 +35,7 @@ class ProjectRoleHelper extends Base
*/
public function isDraggable(array &$task)
{
- if ($task['is_active'] == 1 && $this->helper->user->hasProjectAccess('BoardViewController', 'save', $task['project_id'])) {
+ if ($task['is_active'] == 1 && $this->helper->user->hasProjectAccess('BoardAjaxController', 'save', $task['project_id'])) {
return $this->isSortableColumn($task['project_id'], $task['column_id']);
}
diff --git a/app/Template/activity/project.php b/app/Template/activity/project.php
index ce1c8c0f..e8e62777 100644
--- a/app/Template/activity/project.php
+++ b/app/Template/activity/project.php
@@ -1,5 +1,5 @@
<section id="main">
- <?= $this->projectHeader->render($project, 'AnalyticController', $this->app->getRouterAction()) ?>
+ <?= $this->projectHeader->render($project, 'ActivityController', $this->app->getRouterAction()) ?>
<?php if ($project['is_public']): ?>
<div class="menu-inline pull-right">