Its nice that MTOS is licensed under the GPL! That means I get to modify the code, and I do!
Today I edited cms/include/display_options.tmpl to include displaying 300 items instead of the other options:
<option value="25"<mt:if name="LIMIT_25"> selected="selected"</mt:if>><__trans phrase="[quant,_1,row,rows]" params="25"></option> <option value="50"<mt:if name="LIMIT_50"> selected="selected"</mt:if>><__trans phrase="[quant,_1,row,rows]" params="50"></option> <option value="100"<mt:if name="LIMIT_100"> selected="selected"</mt:if>><__trans phrase="[quant,_1,row,rows]" params="100"></option> <option value="200"<mt:if name="LIMIT_200"> selected="selected"</mt:if>><__trans phrase="[quant,_1,row,rows]" params="200"></option> <option value="300"<mt:if name="LIMIT_300"> selected="selected"</mt:if>><__trans phrase="[quant,_1,row,rows]" params="300"></option>
Nice!
