summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorspider@dav <spiderr@bitweaver.org>2025-05-30 09:27:15 -0400
committerspider@dav <spiderr@bitweaver.org>2025-05-30 09:27:52 -0400
commitbac722acf3d5c34d64693ff1d3a3708521ef57fa (patch)
treea648dca3ab012b5c8eb37e8f1cbc5f5eaa917ceb /includes
parentf22773ad31e4fe4c70e6a1f2ad1aa4a3f27d1d7b (diff)
downloadwiki-bac722acf3d5c34d64693ff1d3a3708521ef57fa.tar.gz
wiki-bac722acf3d5c34d64693ff1d3a3708521ef57fa.tar.bz2
wiki-bac722acf3d5c34d64693ff1d3a3708521ef57fa.zip
fix non boot icons; PHP8 compat explode; perm check
Diffstat (limited to 'includes')
-rw-r--r--includes/display_bitpage_inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/display_bitpage_inc.php b/includes/display_bitpage_inc.php
index e129e73..e84a569 100644
--- a/includes/display_bitpage_inc.php
+++ b/includes/display_bitpage_inc.php
@@ -60,7 +60,7 @@ if( !empty( $_REQUEST["undo"] ) && !$gContent->isLocked() && ( $gContent->hasUpd
// work out if this page has slides
if( $gBitSystem->isFeatureActive( 'wiki_uses_slides' )) {
- $slides = split( "-=[^=]+=-", $gContent->mInfo["data"] );
+ $slides = explode( "-=[^=]+=-", $gContent->mInfo["data"] );
if( count( $slides ) <= 1 ) {
$slides = explode( defined( 'PAGE_SEP' ) ? PAGE_SEP : "...page...", $gContent->mInfo["data"] );
}