Article Manager is a GREAT Tool and being used very effectively on WGMD 92.7 FM Talk of Delmarva Radio Station website!
http://www.wgmd.comThere was one problem that we started to notice however - - Timestamp!
The Timestamp for Visitor Submitted articles was not being handled properly and all content was being tagged for the "Current Date" but for a time set to "01:00:00"
Searching the files for a solution I made this alteration -
File - articleman_engine.php
Directory - /public_html/components/com_articleman/class
Line - 83
$row->publish_up= date( 'Y-m-d H:i:s' ,strtotime($date));
Replace Line 83 with the following -
$row->publish_up = date( 'Y-m-d H:i:s' );
This clip of code was grabbed from the "Original Creation Date" found a few lines above. I just copied the code, and move to the "publish_up" field.
Hope this helps others - and makes it as an update in future versions. Thanks