summaryrefslogtreecommitdiff
path: root/render/box_construct.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/box_construct.c')
-rw-r--r--render/box_construct.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/render/box_construct.c b/render/box_construct.c
index ad39684a1..6a363166f 100644
--- a/render/box_construct.c
+++ b/render/box_construct.c
@@ -1627,7 +1627,7 @@ bool box_image(BOX_SPECIAL_PARAMS)
bool box_noscript(BOX_SPECIAL_PARAMS)
{
/* If scripting is enabled, do not display the contents of noscript */
- if (nsoption_bool(enable_javascript))
+ if (content->enable_scripting)
*convert_children = false;
return true;
@@ -3025,7 +3025,7 @@ bool box_extract_link(const html_content *content,
}
s[j] = 0;
- if (nsoption_bool(enable_javascript) == false) {
+ if (content->enable_scripting == false) {
/* extract first quoted string out of "javascript:" link */
if (strncmp(s, "javascript:", 11) == 0) {
apos0 = strchr(s, '\'');