]> git.sesse.net Git - vlc/commitdiff
Extensions/Script: fix IMDb URL
authorJean-Philippe André <jpeg@videolan.org>
Thu, 28 Jan 2010 15:13:35 +0000 (16:13 +0100)
committerJean-Philippe André <jpeg@videolan.org>
Thu, 28 Jan 2010 15:17:36 +0000 (16:17 +0100)
share/lua/extensions/imdb.lua

index 7cfb6230e4588b3b6430197f0be7d5b27696fcae..856293e485b49bb9f15b06d7b5d7dffacda8843b 100644 (file)
@@ -208,7 +208,7 @@ function click_open()
         summary = "(Unknown)"
     end
     text = text .. "<p>" .. summary .. "</p>"
-    text = text .. "<p><h2>Source IMDb</h2><a href=\"url\">" .. url .. "</a></p>"
+    text = text .. "<p><h2>Source IMDb</h2><a href=\"" .. url .. "\">" .. url .. "</a></p>"
 
     html:set_text(text)
 end