Check-in [ed5179db1f]
Not logged in
Overview

SHA1 Hash:ed5179db1fb92ca486587210043844e1cef7922e
Date: 2008-11-15 21:17:31
User: drh
Comment:Enable the "Edit" submenu link on the Ticket View page when the user has ticket append privilege. Fix for part of ticket 7b9be0b127.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/tkt.c from [d23217d9bb] to [06fa0eeb84].

@@ -325,11 +325,11 @@
 */
 void tktview_page(void){
   const char *zScript;
   login_check_credentials();
   if( !g.okRdTkt ){ login_needed(); return; }
-  if( g.okWrTkt ){
+  if( g.okWrTkt || g.okApndTkt ){
     style_submenu_element("Edit", "Edit The Ticket", "%s/tktedit?name=%T",
         g.zTop, PD("name",""));
   }
   if( g.okHistory ){
     const char *zUuid = PD("name","");