Login     Sign up
Check/Uncheck All
jacky loon (@jack41)
Join date: Nov 9th 2010
Community posts: 87
View Profile
Send Message

At the time of deleting messages from inbox and outbox, there is an option of checking all on the bottom. Is it possible to move this option to up. I mean to say changing check/uncheck all position from bottom to upper.
Thanks

172 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

message.module.php

function inbox

move this

[code]
c('<tr class="row2"><td colspan="4">
<input type="checkbox" name="allbox" id="check_uncheck" onclick="js_check_all(this.form)" /><label for="check_uncheck">'.t('Check/ Uncheck all').'</label>
<input type="submit" value="'.t('Delete').'" '.cfm().'/></td></tr>');
[/code]

to the line above

[code]
while ($row = sql_fetch_array($res)) {
[/code]

172 months ago