Topic: Add sorting publications by publish date
Converted
avatar
12
Posts: 0

Posted:
17.Jan 2007 - 23:10

Sometimes is better sorting publications by publish date. I added options to do that.

File pnadmin.php:
line from 201 to 203:

Code

array('title' => '_PGSORTID', 'value' => $pubColumn['id']),

// by arturm: in line 203 add publishDate field sorting

array('title' => '_PGFTPUBLISHDATE', 'value' => $pubColumn['publishDate']));


line from 358 to 360:

Code

array('title' => '_PGSORTID', 'value' => $pubColumn['id']),

// by artur: in line 360 add publishDate field sorting

array('title' => '_PGFTPUBLISHDATE','value' => $pubColumn['publishDate']));


Now on Publication Type Configuration page in the List setup you can select Publish Date as sorting key.
Converted
avatar
12
Posts: 0

Posted:
6.Nov 2007 - 07:42

Thanks a lot guy :-D