summaryrefslogtreecommitdiff
path: root/slideshow.php
diff options
context:
space:
mode:
authorspiderr <spiderr@bitweaver.org>2021-01-31 15:49:08 -0500
committerspiderr <spiderr@bitweaver.org>2021-01-31 15:49:08 -0500
commit71cbc7db147f95c78fc3b26d61fc31ad3c6bc0fb (patch)
treece46484ab0b09a8e2b83caf71cff7335693f0649 /slideshow.php
parentd9d215a4a116dce855582c319303f87462b972b3 (diff)
downloadwiki-71cbc7db147f95c78fc3b26d61fc31ad3c6bc0fb.tar.gz
wiki-71cbc7db147f95c78fc3b26d61fc31ad3c6bc0fb.tar.bz2
wiki-71cbc7db147f95c78fc3b26d61fc31ad3c6bc0fb.zip
PHP7 clean up dual static + object use of parseData, and create ->getParsedData & ::filterDataHash
Diffstat (limited to 'slideshow.php')
-rwxr-xr-xslideshow.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/slideshow.php b/slideshow.php
index d403b9b..137ae2f 100755
--- a/slideshow.php
+++ b/slideshow.php
@@ -72,7 +72,7 @@ if (isset($reqs[1][$_REQUEST["slide"]])) {
$slide_title = '';
}
-$slide_data = $gContent->parseData( $slides[$_REQUEST["slide"] + 1] );
+$slide_data = LibertyContent::parseDataHash( $slides[$_REQUEST["slide"] + 1] );
if (isset($reqs[1][$_REQUEST["slide"] - 1])) {
$slide_prev_title = $reqs[1][$_REQUEST["slide"] - 1];