Update index.py

pull/701/head
Mr Chen 7 months ago
parent b17452a949
commit 8835cd4ab5
  1. 3
      plugins/lam/index.py

@ -98,7 +98,8 @@ def getPhpVer(expect=83):
if (t == expect):
is_find = True
return str(t)
new_ex = expect[0:1]+"."+expect[1:2]
expect_str = str(expect)
new_ex = expect_str[0:1]+"."+expect_str[1:2]
if t.find(new_ex) > -1:
is_find = True
return str(t)

Loading…
Cancel
Save