diff --git a/README.md b/README.md index bea76c04..2179c24b 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 ------------------ @@ -59,6 +59,16 @@ Docker Image Bludit provides an official Docker image. - https://hub.docker.com/r/bludit/docker/ +Backers +------- +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) + + + License ------- Bludit is open source software licensed under the [MIT license](https://tldrlegal.com/license/mit-license). 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 '
';
-	var_dump($array);
-	echo '
'; -} - function createPage($args) { global $dbPages; global $Syslog; 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 .= '
'; $html .= ''; $html .= ''; $html .= ''.$Language->get('Show the home link on the sidebar').''; $html .= '
';