Great MOD!!!!
I did add a couple of things though (hope it's OK). Because the AdminCP stuff seemed to be getting lost under some other settings, I edited the xml file with the following code:
Starting at line 22, the first plugin looks like this:
PHP Code:
<plugin active="1" executionorder="5">
<title>Forum Intro</title>
<hookname>forumadmin_edit_form</hookname>
<phpcode><![CDATA[print_yes_no_row($vbphrase['forumintroonoff'], 'forum[forumintroonoff]', $forum['forumintroonoff']);
print_input_row($vbphrase['forumintroname'], 'forum[forumintroname]', $forum['forumintroname']);
print_textarea_row($vbphrase['forumintrodescr'], 'forum[forumintrodescr]', $forum['forumintrodescr']);]]>
print_input_row($vbphrase['forumintroimage'], 'forum[forumintroimage]', $forum['forumintroimage']);
</phpcode>
</plugin>
I changed it just a little to add a Header for the options. Here is the new code:
PHP Code:
<plugin active="1" executionorder="5">
<title>Forum Intro</title>
<hookname>forumadmin_edit_form</hookname>
<phpcode><![CDATA[print_table_header($vbphrase['intro_forum_title']);
print_yes_no_row($vbphrase['forumintroonoff'], 'forum[forumintroonoff]', $forum['forumintroonoff']);
print_input_row($vbphrase['forumintroname'], 'forum[forumintroname]', $forum['forumintroname']);
print_textarea_row($vbphrase['forumintrodescr'], 'forum[forumintrodescr]', $forum['forumintrodescr']);]]>
print_input_row($vbphrase['forumintroimage'], 'forum[forumintroimage]', $forum['forumintroimage']);
</phpcode>
</plugin>
Notice that in the "new" code, there is a new phrase (intro_forum_title). I added this code under the "Forum-Related" phrase type section (under the "Intro_Title" phrase).
PHP Code:
<phrase name="intro_forum_title" date="1165422620" username="BigPig" version="1.0.3"><![CDATA[Forum Intro]]></phrase>
Here is a screenshot of what it looks like:
This is not a major addition, but it does help me sort out all the stuff, and find it easily. If any of you find this useful, feel free to use it.
Again, I hope this is OK with you jaks. If it is not, let me know and I will remove this post.