Skip to content

Commit 0148fd2

Browse files
authored
Merge pull request #161 from RRZE-Webteam/dev
v1.22.1
2 parents 2c1e668 + c167592 commit 0148fd2

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

includes/Accordion/Accordion.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function __construct()
3131
* @param string $content [description]
3232
* @return string [description]
3333
*/
34-
public function shortcodeCollapsibles($atts, $content = '', $tag)
34+
public function shortcodeCollapsibles($atts, $content = '', $tag = '')
3535
{
3636
if (isset($GLOBALS['collapsibles_count'])) {
3737
$GLOBALS['collapsibles_count'] ++;

includes/ContentSlider/ContentSlider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function __construct()
3030
* @param string $tag [description]
3131
* @return string [description]
3232
*/
33-
public function shortcodeContentSlider($atts, $content='', $tag)
33+
public function shortcodeContentSlider($atts, $content = '', $tag = '')
3434
{
3535
global $post;
3636
$output = '';

includes/LegalText/LegalText.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function __construct()
2424
* @param string $tag [description]
2525
* @return string [description]
2626
*/
27-
public function legalText($atts, $content = '', $tag)
27+
public function legalText($atts, $content = '', $tag = '')
2828
{
2929
wp_enqueue_style('rrze-elements');
3030
return '<div class="legal-text">' . $content . '</div>';

includes/Notice/Notice.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function __construct()
4343
* @param string $tag [description]
4444
* @return string [description]
4545
*/
46-
public function shortcodeNotice($atts, $content = '', $tag)
46+
public function shortcodeNotice($atts, $content = '', $tag = '')
4747
{
4848
extract(shortcode_atts([
4949
'title' => '',

includes/PullDiv/PullDiv.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function __construct()
2525
* @param string $tag [description]
2626
* @return string [description]
2727
*/
28-
public function shortcodePullLeftRight($atts, $content = '', $tag)
28+
public function shortcodePullLeftRight($atts, $content = '', $tag = '')
2929
{
3030
$atts = shortcode_atts( [
3131
'title' => '',

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rrze-elements",
3-
"version": "1.22.0",
3+
"version": "1.22.1",
44
"description": "RRZE Elements: Gestalterische Erweiterungen für Webauftritte.",
55
"main": "rrze-elements.php",
66
"textdomain": "rrze-elements",

rrze-elements.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Plugin Name: RRZE Elements
55
Plugin URI: https://github.com/RRZE-Webteam/rrze-elements
66
Description: Advanced design elements for WordPress websites.
7-
Version: 1.22.0
7+
Version: 1.22.1
88
Author: RRZE Webteam
99
Author URI: https://blogs.fau.de/webworking/
1010
License: GNU General Public License v2

0 commit comments

Comments
 (0)