|
@@ -81,7 +81,7 @@
|
|
|
<{elseif($v['type'] == 7 && isset($v['link'])):}>
|
|
|
|
|
|
<div class="p-img">
|
|
|
- <a id="link_<{$k}>" href="$v['link']">
|
|
|
+ <a id="link_<{$k}>" href="<{$v['link']}>">
|
|
|
|
|
|
<img class="img" src="<{$v['pic_cover']}>" alt="">
|
|
|
|
|
@@ -106,7 +106,7 @@ function emit(id,txt,type){
|
|
|
$('#live_note_'+ id).html(txt);
|
|
|
var href = $('#live_note_'+ id).attr('href');
|
|
|
var temp = href.split('¬e=');
|
|
|
- href = href[0] + '¬e=' + type;
|
|
|
+ href = temp[0] + '¬e=' + type;
|
|
|
$('#live_note_'+ id).attr('href', href);
|
|
|
}
|
|
|
|