SF.net SVN: phpwiki:[10658] trunk/lib/WikiTheme.php

vargenau--- via phpwiki-checkins <[email protected]>
Newsgroups gmane.comp.web.wiki.phpwiki.checkins
Message-ID <[email protected]>
Revision: 10658
          http://sourceforge.net/p/phpwiki/code/10658
Author:   vargenau
Date:     2021-11-18 08:48:38 +0000 (Thu, 18 Nov 2021)
Log Message:
-----------
$args must be an array

Modified Paths:
--------------
    trunk/lib/WikiTheme.php

Modified: trunk/lib/WikiTheme.php
===================================================================
--- trunk/lib/WikiTheme.php	2021-11-17 18:51:03 UTC (rev 10657)
+++ trunk/lib/WikiTheme.php	2021-11-18 08:48:38 UTC (rev 10658)
@@ -1076,7 +1076,7 @@
     {
         extract($this->_get_name_and_rev($page_or_rev));
 
-        $args = $version ? array('version' => $version) : false;
+        $args = $version ? array('version' => $version) : array();
         if ($action) $args['action'] = $action;
 
         return $this->makeButton($label ? $label : $pagename,

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.