nvm figured it out by right clicking the captcha image and selecting view image got a function error in theme.php
Can any one figure out why this bit of code would break the captcha
| PHP: |
<?php //Add Block Any Where Script by espsjurs at mod.krypinn.net/ function create_block($block_id, $block_label){ global $db, $prefix, $cpgtpl; require_once('includes/nbbcode.php'); $content = ''; $result = $db->sql_query('SELECT * FROM '.$prefix.'_blocks WHERE bid = \''.$block_id.'\''); $row = $db->sql_fetchrow($result, SQL_ASSOC);
if ($row['bkey'] == 'custom'){ $content = $row['content']; } if ($row['bkey'] == 'file'){ include_once('blocks/'.$row['blockfile'].''); } $cpgtpl->assign_vars(array( ''.$block_label.'' => decode_bb_all($content,1,1) )); } create_block(7,'custom_head_block');
|