after the installation when I go to any AME settings in Admin CP I get something like this:
options['automediaembed_resolve']) { print_form_header('automediaembed_admin', '', false, true, 'warningform'); print_table_header($vbphrase['automediaembed_warning']); print_description_row($vbphrase['automediaembed_extraction_off']); print_table_footer(); } } /** * Display settings */ if ($action == "settings") { $settings = array( 'xusergroups' => explode(",", $vbulletin->options['automediaembed_usergroups']), 'xforums' => explode(",", $vbulletin->options['automediaembed_forumids']), 'open' => $vbulletin->options['automediaembed_open'], 'close' => $vbulletin->options['automediaembed_close'], ); $results = $db->query_read_slave("SELECT usergroupid, title FROM " . TABLE_PREFIX . "usergroup ORDER BY usergroupid ASC "); print_form_header('automediaembed_admin', 'savesettings'); print_table_header($vbphrase['automediaembed_settings']); print_yes_no_row($vbphrase['automediaembed_disable_new'], 'disablenew', $vbulletin->options['automediaembed_disable']); print_yes_no_row($vbphrase['automediaembed_doforums'], 'doforums', $vbulletin->options['automediaembed_doforums']); print_yes_no_row($vbphrase['automediaembed_doblogs'], 'doblogs', $vbulletin->options['automediaembed_doblogs']); print_yes_no_row($vbphrase['automediaembed_dogroups'], 'dogroups', $vbulletin->options['automediaembed_dogroups']); print_yes_no_row($vbphrase['automediaembed_dovms'], 'dovms', $vbulletin->options['automediaembed_dovms']);
and much much more of this stuff... what did I do wrong?
|