|
|
@@ -204,10 +204,10 @@ include($_SERVER['DOCUMENT_ROOT'] . "/Authorization/script/php/permission/check_
|
|
|
const downloads = ["dll", "dyn", "exe", "msi"];
|
|
|
const videos = ["mp4", "m3u8", "ts", "avi"];
|
|
|
const hidden = ["png"];
|
|
|
- if (webLink != null) {
|
|
|
- $("#webLink").append("<a href='" + webLink + "' target='_blank'>" + source + "</a>");
|
|
|
- } else if (webLink == null) {
|
|
|
+ if (webLink == null || webLink == '空') {
|
|
|
$("#webLink").append("<span>" + source + "</span>");
|
|
|
+ }else{
|
|
|
+ $("#webLink").append("<a href='" + webLink + "' target='_blank'>" + source + "</a>");
|
|
|
}
|
|
|
|
|
|
$(document).ready(function() {
|