From bc977dd195063a47c42c81255b82dd15e87e155e Mon Sep 17 00:00:00 2001 From: jim winstead Date: Thu, 25 Apr 2002 22:12:38 +0000 Subject: [PATCH] Do not add redundant id attribute. It doesn't make the output any more standards compliant. --- ext/standard/url_scanner_ex.re | 2 -- 1 file changed, 2 deletions(-) diff --git a/ext/standard/url_scanner_ex.re b/ext/standard/url_scanner_ex.re index 508a792435..4d7c507894 100644 --- a/ext/standard/url_scanner_ex.re +++ b/ext/standard/url_scanner_ex.re @@ -187,8 +187,6 @@ static inline void handle_form(STD_PARA) if (ctx->tag.len == 4 && strncasecmp(ctx->tag.c, "form", 4) == 0) { smart_str_appends(&ctx->result, "result, &ctx->q_name); - smart_str_appends(&ctx->result, "\" id=\""); - smart_str_append(&ctx->result, &ctx->q_name); smart_str_appends(&ctx->result, "\" value=\""); smart_str_append(&ctx->result, &ctx->q_value); smart_str_appends(&ctx->result, "\" />"); -- 2.50.1