From 0ca346f97762b4bb08c4fe58af87e33b22f926f8 Mon Sep 17 00:00:00 2001
From: Diego Najar <dignajar@gmail.com>
Date: Mon, 15 Jan 2018 17:27:38 +0100
Subject: [PATCH 1/5] Update README.md

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index bea76c04..bcd764ba 100644
--- a/README.md
+++ b/README.md
@@ -43,7 +43,7 @@ PHP Built-in web server
 - PHP [json](http://php.net/manual/en/book.json.php) module for JSON manipulation.
 - Supported web servers:
    * Bludit supports almost every webserver
-   * PHP Built-in web server
+   * PHP Built-in web server (`php -S localhost:8000`)
 
 Installation Guide
 ------------------

From 5f3a06d65380d36704a127253be7d2b11578281a Mon Sep 17 00:00:00 2001
From: Anaggh S <anagghscm@gmail.com>
Date: Tue, 16 Jan 2018 00:50:09 +0530
Subject: [PATCH 2/5] Fix static pages plugin

---
 bl-plugins/static-pages/plugin.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bl-plugins/static-pages/plugin.php b/bl-plugins/static-pages/plugin.php
index edd7605c..e817fd04 100644
--- a/bl-plugins/static-pages/plugin.php
+++ b/bl-plugins/static-pages/plugin.php
@@ -25,8 +25,8 @@ class pluginStaticPages extends Plugin {
 		$html .= '<div>';
 		$html .= '<label>'.$Language->get('Home link').'</label>';
 		$html .= '<select name="homeLink">';
-		$html .= '<option value="true" '.($this->getValue('homeLink')?'checked':'').'>Enabled</option>';
-		$html .= '<option value="false" '.($this->getValue('homeLink')?'checked':'').'>Disabled</option>';
+		$html .= '<option value="true" '.($this->getValue('homeLink')?'selected':'').'>Enabled</option>';
+		$html .= '<option value="false" '.(!$this->getValue('homeLink')?'selected':'').'>Disabled</option>';
 		$html .= '</select>';
 		$html .= '<span class="tip">'.$Language->get('Show the home link on the sidebar').'</span>';
 		$html .= '</div>';

From 1d0d515e84e696a6e77a0c4112a519a852a01692 Mon Sep 17 00:00:00 2001
From: Diego Najar <dignajar@gmail.com>
Date: Tue, 16 Jan 2018 14:16:33 +0100
Subject: [PATCH 3/5] Update functions.php

---
 bl-kernel/functions.php | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/bl-kernel/functions.php b/bl-kernel/functions.php
index 5234c9c0..7dd6e399 100644
--- a/bl-kernel/functions.php
+++ b/bl-kernel/functions.php
@@ -341,12 +341,6 @@ function deactivatePlugin($pluginClassName) {
 	return false;
 }
 
-function printDebug($array) {
-	echo '<pre>';
-	var_dump($array);
-	echo '</pre>';
-}
-
 function createPage($args) {
 	global $dbPages;
 	global $Syslog;

From 289a454ac1c27951c7f4e0f147f93fc411e109a0 Mon Sep 17 00:00:00 2001
From: Diego Najar <dignajar@gmail.com>
Date: Wed, 17 Jan 2018 09:50:27 +0100
Subject: [PATCH 4/5] Update README.md

---
 README.md | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/README.md b/README.md
index bcd764ba..d1d49277 100644
--- a/README.md
+++ b/README.md
@@ -59,6 +59,16 @@ Docker Image
 Bludit provides an official Docker image.
 - https://hub.docker.com/r/bludit/docker/
 
+Backers
+-------
+Become a **Backer** Support Bludit with a monthly contribution to help us continue development. [[Become a Backer](https://opencollective.com/bludit#backer)]
+
+Sponsors
+--------
+Become a **Sponsor** and support Bludit with a monthly contribution to help us continue development. [[Become a Sponsor](https://opencollective.com/bludit#sponsor)]
+
+<a href="https://opencollective.com/bludit/sponsor/0/website" target="_blank"><img src="https://opencollective.com/bludit/sponsor/0/avatar.svg"></a>
+
 License
 -------
 Bludit is open source software licensed under the [MIT license](https://tldrlegal.com/license/mit-license).

From 24e841bc6e65345d7d367e602e8028d2454fec23 Mon Sep 17 00:00:00 2001
From: Diego Najar <dignajar@gmail.com>
Date: Wed, 17 Jan 2018 10:45:33 +0100
Subject: [PATCH 5/5] Update README.md

---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index d1d49277..2179c24b 100644
--- a/README.md
+++ b/README.md
@@ -61,11 +61,11 @@ Bludit provides an official Docker image.
 
 Backers
 -------
-Become a **Backer** Support Bludit with a monthly contribution to help us continue development. [[Become a Backer](https://opencollective.com/bludit#backer)]
+Become a **Backer** and support Bludit with a monthly contribution to help us continue development. [Become a Backer](https://opencollective.com/bludit#backer)
 
 Sponsors
 --------
-Become a **Sponsor** and support Bludit with a monthly contribution to help us continue development. [[Become a Sponsor](https://opencollective.com/bludit#sponsor)]
+Become a **Sponsor** and support Bludit with a monthly contribution to help us continue development. [Become a Sponsor](https://opencollective.com/bludit#sponsor)
 
 <a href="https://opencollective.com/bludit/sponsor/0/website" target="_blank"><img src="https://opencollective.com/bludit/sponsor/0/avatar.svg"></a>