TiddlyWiki.org

Changeset 4203

Show
Ignore:
Timestamp:
31/03/08 15:20:10 (5 months ago)
Author:
JeremyRuston
Message:

Fixed problem with permalink/views of non-existent tiddlers over read-only (ticket #541)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Trunk/core/js/Paramifiers.js

    r3559 r4203  
    3535config.paramifiers.open = { 
    3636        onstart: function(v) { 
    37                 story.displayTiddler("bottom",v,null,false,null); 
     37                if(!readOnly || store.tiddlerExists(v) || store.isShadowTiddler(v)) 
     38                        story.displayTiddler("bottom",v,null,false,null); 
    3839        } 
    3940};