$output.=form_select("Enable HTML tags","filter_html",variable_get("filter_html",0),array("Disabled","Enabled"),"Allow HTML and PHP tags in user-contributed content.");
$output.=form_textfield("Allowed HTML tags","allowed_html",variable_get("allowed_html","<A><B><BLOCKQUOTE><DD><DL><DT><I><LI><OL><U><UL>"),64,128,"If enabled, optionally specify tags which should not be stripped. 'STYLE' attributes, 'ON' attributes and unclosed tags are always stripped.");
$output.="<HR>";
$output.="<hr />";
$output.=form_select("Enable link tags","filter_link",variable_get("filter_link",0),array("Disabled","Enabled"),"Substitute special [[link]] tags.");
$output.="<HR>";
$output.="<hr />";
return$output;
}
...
...
@@ -108,19 +108,19 @@ function node_overview($query) {
$color=array("#ffffff","#e5e5e5");
$query=node_query($query?$query:0);
$result=db_query("SELECT n.* FROM node n $query[1] LIMIT 50");
$result=db_query("SELECT n.*, u.name FROM node n LEFT JOIN users u ON n.author = u.id $query[1] LIMIT 50");
$output.=form_select("Enable HTML tags","filter_html",variable_get("filter_html",0),array("Disabled","Enabled"),"Allow HTML and PHP tags in user-contributed content.");
$output.=form_textfield("Allowed HTML tags","allowed_html",variable_get("allowed_html","<A><B><BLOCKQUOTE><DD><DL><DT><I><LI><OL><U><UL>"),64,128,"If enabled, optionally specify tags which should not be stripped. 'STYLE' attributes, 'ON' attributes and unclosed tags are always stripped.");
$output.="<HR>";
$output.="<hr />";
$output.=form_select("Enable link tags","filter_link",variable_get("filter_link",0),array("Disabled","Enabled"),"Substitute special [[link]] tags.");
$output.="<HR>";
$output.="<hr />";
return$output;
}
...
...
@@ -108,19 +108,19 @@ function node_overview($query) {
$color=array("#ffffff","#e5e5e5");
$query=node_query($query?$query:0);
$result=db_query("SELECT n.* FROM node n $query[1] LIMIT 50");
$result=db_query("SELECT n.*, u.name FROM node n LEFT JOIN users u ON n.author = u.id $query[1] LIMIT 50");