diff options
author | Thomas Lange <code@nerdmind.de> | 2017-05-26 11:46:36 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-05-26 11:46:36 +0200 |
commit | 9af3d7a4d2a62b2b4951876a24aa7bcacfe11223 (patch) | |
tree | 5fbf8a13f180fbbf700f697759613786fe16018e | |
parent | 3aec340c6059104039d93938bc4e961cd0471d38 (diff) | |
download | bigpipe-9af3d7a4d2a62b2b4951876a24aa7bcacfe11223.tar.gz bigpipe-9af3d7a4d2a62b2b4951876a24aa7bcacfe11223.tar.xz bigpipe-9af3d7a4d2a62b2b4951876a24aa7bcacfe11223.zip |
It was forgotten to rename the method call "::enablePipeline()" to "::enabled()".
-rwxr-xr-x | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ require_once 'include/functions.php'; #===============================================================================
if(isset($_GET['bigpipe']) AND (int) $_GET['bigpipe'] === 0) {
// You can also check for search spiders and disable the pipeline
- BigPipe\BigPipe::enablePipeline(FALSE);
+ BigPipe\BigPipe::enabled(FALSE);
}
// Outsourced to avoid duplicate code in index.php and async.php
|