diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-08-28 22:28:39 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-08-28 22:28:39 -0400 |
commit | f4c3ca999145ad7a9428cbadd609fad7d02df2c1 (patch) | |
tree | 03f7bf9bb539e0253fdb8d18d8c0c8b3a7ff3313 | |
parent | fe3504d8a2c7739df74735e54109403c3dd75619 (diff) |
Add no referrer policy in meta tags
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | app/Template/layout.php | 1 | ||||
-rw-r--r-- | composer.json | 2 | ||||
-rw-r--r-- | composer.lock | 14 |
5 files changed, 11 insertions, 11 deletions
@@ -30,6 +30,7 @@ Improvements: * Enable support for Github Enterprise when using Github Authentication * Update iCalendar library to display organizer name * Improve sidebar menus +* Add no referrer policy in meta tags * Run automated unit tests with Sqlite/Mysql/Postgres on Travis-ci * Add Makefile and remove the scripts directory @@ -1,14 +1,12 @@ Kanboard ======== -Kanboard is a simple visual task board web application. +Kanboard is a project management software that use the Kanban methodology. Official website: <http://kanboard.net> -- Inspired by the [Kanban methodology](http://en.wikipedia.org/wiki/Kanban) - Get a visual and clear overview of your project - Multiple boards with the ability to drag and drop tasks -- Minimalist software, focus only on essential features (Less is more) - Open source and self-hosted - Super simple installation - Translated in 21 languages diff --git a/app/Template/layout.php b/app/Template/layout.php index fcdc23a0..3e883fbf 100644 --- a/app/Template/layout.php +++ b/app/Template/layout.php @@ -6,6 +6,7 @@ <meta name="mobile-web-app-capable" content="yes"> <meta name="robots" content="noindex,nofollow"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="referrer" content="no-referrer"> <?php if (isset($board_public_refresh_interval)): ?> <meta http-equiv="refresh" content="<?= $board_public_refresh_interval ?>"> diff --git a/composer.json b/composer.json index a2b41f57..eb8f98ea 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ "fguillot/json-rpc" : "1.0.1", "fguillot/picodb" : "1.0.1", "fguillot/simpleLogger" : "0.0.2", - "fguillot/simple-validator" : "0.0.3", + "fguillot/simple-validator" : "1.0.0", "nickcernis/html-to-markdown" : "2.2.1", "pimple/pimple" : "~3.0", "swiftmailer/swiftmailer" : "@stable", diff --git a/composer.lock b/composer.lock index 8dfc3e46..650c0e18 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "hash": "f708764553321994743c3d42c4d6e512", + "hash": "ffa715ba1b335c0a36d296936905667e", "packages": [ { "name": "christian-riesen/base32", @@ -333,16 +333,16 @@ }, { "name": "fguillot/simple-validator", - "version": "v0.0.3", + "version": "1.0.0", "source": { "type": "git", "url": "https://github.com/fguillot/simpleValidator.git", - "reference": "2f30078bb6e688cf123c150d58fda322792a1532" + "reference": "9579993f3dd0f03053b28fec1e7b9990edc3947b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fguillot/simpleValidator/zipball/2f30078bb6e688cf123c150d58fda322792a1532", - "reference": "2f30078bb6e688cf123c150d58fda322792a1532", + "url": "https://api.github.com/repos/fguillot/simpleValidator/zipball/9579993f3dd0f03053b28fec1e7b9990edc3947b", + "reference": "9579993f3dd0f03053b28fec1e7b9990edc3947b", "shasum": "" }, "require": { @@ -363,9 +363,9 @@ "name": "Frédéric Guillot" } ], - "description": "The most easy to use validator library for PHP :)", + "description": "Simple validator library", "homepage": "https://github.com/fguillot/simpleValidator", - "time": "2015-04-14 02:03:43" + "time": "2015-08-29 00:44:37" }, { "name": "fguillot/simpleLogger", |