 Issue 29362580:
  Issue 4641 - Append performance fix to trac cgi file  (Closed)
    
  
    Issue 29362580:
  Issue 4641 - Append performance fix to trac cgi file  (Closed) 
  | Left: | ||
| Right: | 
| OLD | NEW | 
|---|---|
| (Empty) | |
| 1 from trac.web.session import Session | |
| 2 orig_get = Session.get | |
| 3 def patched_get(self, key, default=None): | |
| 4 if key == 'accesskeys': | |
| 5 return '1' | |
| 6 return orig_get(self, key, default) | |
| 7 Session.get = patched_get | |
| 8 | |
| OLD | NEW |