Type: Suggestion
I didn't know where exactly to post this to I figured I'd just throw this out here.

I noticed that the Enabled Modules list in the Admin area will not show more than 50 items. Any additional items added did show up on the left column but then I couldn't delete any of them because they would not show up on the main list.

So if you too need to have more than 50 items show up on the main Enabled Modules list of the Admin you can follow what I did.

1) Go to admin > modules > oxymall > plugins > forms > modules > user > list.xml
2) Open list.xml in Dreamweaver or a text editor and scroll to the very bottom of the page and look for this code:
<sql>
<vars>
<table type="table" />

<page type="page"/>
<items type="var" import="50"/>

<condition type="var" import="" />

<order type="var" import="mod_order" />
<order_mode type="var" import="ASC" />
</vars>
<query>select * from {TABLE} {CONDITION} ORDER BY {ORDER} {ORDER_MODE} LIMIT {PAGE} , {ITEMS} </query>
<count table="{TABLE}" condition="{CONDITION}" />

</sql>

</form>

I only changed this line of code:
<items type="var" import="50"/>
to
<items type="var" import="80"/> (I only need to see 80 files right now. You could probably add more.)

After uploading the file back to the server I was able to see all my pages in the Enabled Modules list of the Admin.

Cheers!
-Pete