Skip to content

Commit 8b94978

Browse files
committed
v 1.2.1
1 parent 4581d36 commit 8b94978

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

elements/rfnext/templates/template.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
//Wrap
44
$wrap = $this->el('div');
5-
$currentNumber=explode("-",$id);
5+
$currentNumber=explode("#",$id);
6+
$currentNumber=explode("-",$currentNumber[1]);
67
$stepClass=str_replace("{step}",($currentNumber[1]+1),$props['step_class']);
78
$stepClass2=str_replace("{step}",($currentNumber[1]+2),$props['step_class']);
89
// Button

elements/rfprevious/templates/template.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
//Wrap
44
$wrap = $this->el('div');
5-
$currentNumber=explode("-",$id);
6-
5+
$currentNumber=explode("#",$id);
6+
$currentNumber=explode("-",$currentNumber[1]);
77
$stepClass=str_replace("{step}",($currentNumber[1]+1),$props['step_class']);
8-
$stepClass2=str_replace("{step}",($currentNumber[1]),$props['step_class']);
8+
$stepClass2=str_replace("{step}",($currentNumber[1]+2),$props['step_class']);
99
// Button
1010
$button = $this->el('button', [
1111

radicalform_elements.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<extension version="3.8" type="plugin" method="upgrade" group="system">
33
<name>PLG_RFE_FORM</name>
44
<author>Tsymbal and Progreccor</author>
5-
<creationDate>29.07.2021</creationDate>
5+
<creationDate>11.08.2021</creationDate>
66
<copyright>Copyright (C) 2005 - 2021 Open Source Matters. All rights reserved.</copyright>
77
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
88
<authorEmail>boss@delo-design.ru</authorEmail>
99
<authorUrl>https://delo-design.ru</authorUrl>
10-
<version>1.2.0</version>
10+
<version>1.2.1</version>
1111
<description>PLG_RFE_FORM_XML_DESCRIPTION</description>
1212
<scriptfile>script.php</scriptfile>
1313

0 commit comments

Comments
 (0)