Ticket Change Details
Not logged in
Overview

Artifact ID: 23d0a9a5b22e68e24b9ca593abd1fce8e93660d3
Ticket: 53ed528478dbc423562ddaa21cb032de78bad806
Bad href in tkthistory_page
User & Date: anonymous 2011-06-23 13:45:19
Changes

  1. comment changed to:
    In tkthistory webpage bad href for submenu element "Check-ins", symbol '?' is used instead of '&':
    <verbatim>
    /*
    ** WEBPAGE: tkthistory
    ** URL: /tkthistory?name=TICKETUUID
    **
    ** Show the complete change history for a single ticket
    */
    void tkthistory_page(void){
      Stmt q;
      char *zTitle;
      const char *zUuid;
      int tagid;
    
      login_check_credentials();
      if( !g.okHistory || !g.okRdTkt ){ login_needed(); return; }
      zUuid = PD("name","");
      zTitle = mprintf("History Of Ticket %h", zUuid);
      style_submenu_element("Status", "Status",
        "%s/info/%s", g.zTop, zUuid);
      style_submenu_element("Check-ins", "Check-ins",
        "%s/tkttimeline?name=%s?y=ci", g.zTop, zUuid);
    </verbatim>
    Must be
    <verbatim>
      style_submenu_element("Check-ins", "Check-ins",
        "%s/tkttimeline?name=%s&amp;y=ci", g.zTop, zUuid);
    </verbatim>
    
  2. foundin changed to: "[081a29c0b7]"
  3. private_contact changed to: "ed685438f367f4147cdb8507d634250f1fbc14d6"
  4. severity changed to: "Minor"
  5. status changed to: "Open"
  6. title changed to: "Bad href in tkthistory_page"
  7. type changed to: "Code_Defect"