google-code-export / django-page-cms

Automatically exported from code.google.com/p/django-page-cms
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

r625 breaks change_status for 'published' #143

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
the change_status method in /pages/admin/views.py is broken from r625, the
following line is in error:

    statuses = {'draft':0,'published':0,'expired':2,'hidden':3}

it should be:

    statuses = {'draft':0,'published':1,'expired':2,'hidden':3}

Original issue reported on code.google.com by web.fpz...@gmail.com on 11 Aug 2009 at 4:20

GoogleCodeExporter commented 9 years ago
Fixed with revision 635

Original comment by batiste....@gmail.com on 13 Aug 2009 at 4:29