Fix unintended rename of link*

pull/1/head
Slávek Banko 11 years ago
parent 5b646dec28
commit ea808784e9

@ -181,8 +181,8 @@ while chrs < maxc do
inlink = true
lb = str_toint(str_find(a, "\"", ch)+1)
le = str_toint(str_find(a, "\"", lb))
lintdescript = str_mid(a, lb, le-lb)
//debug("link data - "+lb+" "+le+" "+lintdescript)
linkscript = str_mid(a, lb, le-lb)
//debug("link data - "+lb+" "+le+" "+linkscript)
elseif str_mid(a, ch, 3) == "<p>" then
lc = lc + 1
cc = 0
@ -199,11 +199,11 @@ while chrs < maxc do
if inlink == true then
//debug("examining link at row"+lc+" between col "+cp+" and col "+cc)
if (Self.Item(0) == lc &&Self.Item(1) >= cp && Self.Item(1) <= cc) then
debug("call "+lintdescript)
if widgetExists(lintdescript) then
lintdescript.execute(Self.Item(0),Self.Item(1))
elseif str_left(lintdescript, 4) == "http" then
exec("konqueror --profile webbrowsing "+lintdescript)
debug("call "+linkscript)
if widgetExists(linkscript) then
linkscript.execute(Self.Item(0),Self.Item(1))
elseif str_left(linkscript, 4) == "http" then
exec("konqueror --profile webbrowsing "+linkscript)
endif
break
endif

Loading…
Cancel
Save