1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-08 07:47:00 +02:00

Minor issue fix in ProcessPageLister.js

This commit is contained in:
Ryan Cramer
2024-05-24 14:52:31 -04:00
parent 904c227cce
commit d50cc127cc
2 changed files with 2 additions and 2 deletions

View File

@@ -303,7 +303,7 @@ var ProcessLister = {
}, 250);
var pos = data.indexOf('ProcessListerScript');
if(pos) {
if(pos > -1) {
var js = data.substring(pos+21);
if(js != '</div>') {
pos = js.indexOf('</div>');

File diff suppressed because one or more lines are too long