Skip to content

Commit b009029

Browse files
authored
Merge pull request #169 from tomolimo/5.0/bugfixes
Fix can't submit GLPI glpi when in SelfService
2 parents 28593ff + 564f77e commit b009029

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

js/cases.js

+3
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ glpi_pm = {
8888

8989
myform.pm_glpi_form_validate = false;
9090

91+
if (myformjq.attr('data-submitted') != undefined) {
92+
myformjq.attr('data-submitted', 'false');
93+
}
9194
let button = myformjq.find('[name=add][type="submit"]');
9295
myform.requestSubmit(button.length ? button[0] : undefined);
9396
}

processmaker.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<compatibility>9.5</compatibility>
4646
</version>
4747
<version>
48-
<num>5.0.1</num>
48+
<num>5.0.2</num>
4949
<compatibility>10.0</compatibility>
5050
</version>
5151
</versions>

setup.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
along with this plugin. If not, see <http://www.gnu.org/licenses/>.
2626
--------------------------------------------------------------------------
2727
*/
28-
define('PROCESSMAKER_VERSION', '5.0.1');
28+
define('PROCESSMAKER_VERSION', '5.0.2');
2929

3030
// Minimal GLPI version, inclusive
3131
define('PLUGIN_PROCESSMAKER_MIN_GLPI', '10.0');

0 commit comments

Comments
 (0)