|
From: <var...@us...> - 2021-07-28 14:53:00
|
Revision: 10382
http://sourceforge.net/p/phpwiki/code/10382
Author: vargenau
Date: 2021-07-28 14:52:50 +0000 (Wed, 28 Jul 2021)
Log Message:
-----------
No default value before mandatory argument
Modified Paths:
--------------
trunk/lib/WikiTheme.php
Modified: trunk/lib/WikiTheme.php
===================================================================
--- trunk/lib/WikiTheme.php 2021-07-28 14:45:17 UTC (rev 10381)
+++ trunk/lib/WikiTheme.php 2021-07-28 14:52:50 UTC (rev 10382)
@@ -1836,7 +1836,7 @@
* @param string $img_url URL for button's image.
* @param array $img_attr Additional attributes for the <img> tag.
*/
- function __construct($text, $name = '', $class = '', $img_url, $img_attr = array())
+ function __construct($text, $name, $class, $img_url, $img_attr = array())
{
parent::__construct('input', array('type' => 'image',
'src' => $img_url,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|