added missing semicolon
This commit is contained in:
parent
b6ec95973b
commit
67427f2a37
1 changed files with 1 additions and 1 deletions
|
@ -406,7 +406,7 @@ function backlinks_macro(param) {
|
||||||
while (rows.next() && cnt <= limit) {
|
while (rows.next() && cnt <= limit) {
|
||||||
skinParam.count = rows.getColumnItem("COUNT");
|
skinParam.count = rows.getColumnItem("COUNT");
|
||||||
skinParam.referrer = rows.getColumnItem("ACCESSLOG_REFERRER");
|
skinParam.referrer = rows.getColumnItem("ACCESSLOG_REFERRER");
|
||||||
skinParam.text = skinParam.referrer.clip(50, "...", true)
|
skinParam.text = skinParam.referrer.clip(50, "...", true);
|
||||||
this.renderSkin("backlinkItem", skinParam);
|
this.renderSkin("backlinkItem", skinParam);
|
||||||
cnt++;
|
cnt++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue