Differences From:
File
src/report.c
part of check-in
[58f15e92ae]
- Disable SQL restrictions as soon as the user-supplied report-generator SQL
has been parsed, so that other queries that run during report rendering
and run unimpeded. Ticket c666e737cb028bcec2d55659d79ce8521355d2bf
by
drh on
2009-01-08 14:05:50.
[view]
To:
File
src/report.c
part of check-in
[cf9ee7d67e]
- Nomenclature chanage: "bug report" becomes "ticket"
by
drh on
2009-01-23 01:01:37.
[view]
@@ -21,9 +21,9 @@
** http://www.hwaci.com/drh/
**
*******************************************************************************
**
-** Code to generate the bug report listings
+** Code to generate the ticket listings
*/
#include "config.h"
#include "report.h"
#include <assert.h>
@@ -40,17 +40,17 @@
int cnt = 0;
login_check_credentials();
if( !g.okRdTkt && !g.okNewTkt ){ login_needed(); return; }
- style_header("Bug Report Main Menu");
+ style_header("Ticket Main Menu");
if( g.okNewTkt ){
- @ <p>Enter a new bug report:</p>
- @ <ol><li value="1"><a href="tktnew">New bug report</a></li></ol>
+ @ <p>Enter a new ticket:</p>
+ @ <ol><li value="1"><a href="tktnew">New ticket</a></li></ol>
@
cnt++;
}
if( !g.okRdTkt ){
- @ <p>You are not authorized to view existing bug reports.</p>
+ @ <p>You are not authorized to view existing tickets.</p>
}else{
db_prepare(&q, "SELECT rn, title, owner FROM reportfmt ORDER BY title");
@ <p>Choose a report format from the following list:</p>
@ <ol>
@@ -77,9 +77,9 @@
}
}
@ </ol>
if( g.okTktFmt ){
- @ <p>Create a new bug report display format:</p>
+ @ <p>Create a new ticket display format:</p>
@ <ol>
@ <li value="%d(cnt+1)"><a href="rptnew">New report format</a></li>
@ </ol>
}