Quote:
Originally Posted by Jase2
Hasann, IMHO this is just a mod for mods sake. Really, how hard is it to add checked="checked" to the navbar template ?
|
Code:
<![CDATA[ $repl = array(
array(
'<td class=\"smallfont\" nowrap=\"nowrap\"><label for=\"cb_cookieuser_navbar\"><input type=\"checkbox\" name=\"cookieuser\" value=\"1\" tabindex=\"103\" id=\"cb_cookieuser_navbar\" accesskey=\"c\" />$vbphrase[remember_me]</label></td>',
'<td class=\"smallfont\" nowrap=\"nowrap\"><label for=\"cb_cookieuser_navbar\"><input type=\"checkbox\" name=\"cookieuser\" value=\"1\" tabindex=\"103\" id=\"cb_cookieuser_navbar\" accesskey=\"c\" checked=\"checked\" />$vbphrase[remember_me]</label></td>'
));
foreach ($repl as $r)
{
$vbulletin->templatecache['navbar'] = str_replace($r[0],$r[1],$vbulletin->templatecache['navbar']);
}
unset($repl, $r);
$repl = array(
array(
'<input type=\"checkbox\" name=\"agree\" id=\"cb_rules_agree\" value=\"1\" />',
'<input type=\"checkbox\" name=\"agree\" id=\"cb_rules_agree\" value=\"1\" checked=\"checked\" />'
));
foreach ($repl as $r)
{
$vbulletin->templatecache['register_rules'] = str_replace($r[0],$r[1],$vbulletin->templatecache['register_rules']);
}
unset($repl, $r);
]]>