Gio Takahashi - Set "Soft Delete Quotes" to no in the QuoteIt! Options.
I'm not sure how the sorting ended up broken, but try this and see if it helps. In includes/functions_quoteit.php, find this:
Code:
WHERE quotes.quoteid IN (' . $prefetched . ')
');
and replace it with this:
Code:
WHERE quotes.quoteid IN (' . $prefetched . ')
ORDER BY ' . $quotedisplay['order']
);