Changeset 3808

Show
Ignore:
Timestamp:
06/09/08 18:51:26 (7 months ago)
Author:
athomas
Message:

Fix for creation of new pages with tags. Thanks to Catalin Balin. Closes #3145.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tagsplugin/trunk/tractags/wiki.py

    r3110 r3808  
    5454            if self._update_tags(req, page) and \ 
    5555                    page.text == page.old_text and \ 
    56                     page.readonly == int('readonly' in req.args): 
     56                    page.readonly == int('readonly' in req.args) and \ 
     57                    page.version > 0: 
    5758                req.redirect(get_resource_url(self.env, page.resource, req.href, version=None)) 
    5859        return []