diff options
author | Thomas Lange <code@nerdmind.de> | 2021-10-24 15:54:43 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-10-24 15:54:43 +0200 |
commit | cbe7e31f68d4ca2bfcd53dffdb130f1f84be3343 (patch) | |
tree | 4e285e9a92116c11c2d72245e71af4422b65a961 /include/pagelets.php | |
parent | 6d69bab4d07cd502d78b565ee9eba3b1e9296931 (diff) | |
download | bigpipe-cbe7e31f68d4ca2bfcd53dffdb130f1f84be3343.tar.gz bigpipe-cbe7e31f68d4ca2bfcd53dffdb130f1f84be3343.tar.xz bigpipe-cbe7e31f68d4ca2bfcd53dffdb130f1f84be3343.zip |
Split up BigPipe "enabled" method into two methods
Split up the "enabled" method of the BigPipe class into two methods, one
to check if the pipelining mode is currently enabled ("isEnabled") and
another one to enable/disable the pipelining mode ("setEnabled").
This change prevents that a single method has two different jobs, which
can be confusing for programmers who didn't wrote the code but only use
them. Now there are two clearly named methods for exactly one job.
Diffstat (limited to 'include/pagelets.php')
-rw-r--r-- | include/pagelets.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pagelets.php b/include/pagelets.php index ed1f8a0..2fc1c9b 100644 --- a/include/pagelets.php +++ b/include/pagelets.php @@ -22,7 +22,7 @@ if(isset($_GET['bigpipe']) AND $_GET['bigpipe'] === '0') { # will be present at the original position within the HTML response (and all # external stylesheets and javascripts will be displayed as simple <link> or # <script> elements within the HTML document). - BigPipe\BigPipe::enabled(FALSE); + BigPipe\BigPipe::setEnabled(FALSE); } #=============================================================================== |