Update to v7.63.0

This commit is contained in:
aapanel.com
2026-01-09 09:47:01 +08:00
parent 8cbfeafe48
commit a001604b69
1523 changed files with 62886 additions and 52816 deletions
+5 -2
View File
@@ -1522,9 +1522,12 @@ server {{
get.search = get.get("search", "")
where = "project_type=?"
param = ["proxy"]
if get.search != "":
where += " and name like ?"
param = ("proxy", "%{}%".format(get.search))
where += " and (name like ? or ps like ?)"
search_pattern = "%{}%".format(get.search)
param.append(search_pattern)
param.append(search_pattern)
else:
param = ("proxy",)