Roundcube Community Forum

 

Change order of message headings version 4 beta

Started by strictlydata, April 23, 2010, 10:38:10 AM

Previous topic - Next topic

strictlydata

In previous versions it has being possible to change the message rows by changing the main.int.php file

$rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size', 'flag', 'attachment');

to

$rcmail_config['list_cols'] = array('from', 'subject', 'date', 'size', 'flag', 'attachment');

Now nothing changes. Has anyone got any ideas to resolve this?

Thanks

toetag

Quote from: strictlydata;26971In previous versions it has being possible to change the message rows by changing the main.int.php file

$rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size', 'flag', 'attachment');

to

$rcmail_config['list_cols'] = array('from', 'subject', 'date', 'size', 'flag', 'attachment');

Now nothing changes. Has anyone got any ideas to resolve this?

Thanks


i changed mine to:

$rcmail_config['list_cols'] = array( 'date','subject', 'from', 'flag', 'size', 'attachment');

and it the displayed columns were reordered on a page refresh.
<[ a desert to an irishman is an empty glass. ]>

strictlydata

I have reinstalled and still the same.
I can however over ride the issue within the theme by editing the mail.html
This puts them into the correct order apart from the read or unread flag is fixed to the left of the subject column.

Again if I edit the threads by removing a column it then reverts back to the default.

Has this functionality being removed from the latest version?

Thanks