Fossil SCM
fixed a mis-escaped formatting token in the byweek report.
Commit
779f3407f522b0c3252e7f3c668e335f368c413d
Parent
c34003b1a995698…
1 file changed
+1
-1
+1
-1
| --- src/timeline.c | ||
| +++ src/timeline.c | ||
| @@ -2544,11 +2544,11 @@ | ||
| 2544 | 2544 | Blob header = empty_blob; |
| 2545 | 2545 | blob_appendf(&header, "Timeline events (%s) for the calendar weeks " |
| 2546 | 2546 | "of %h", stats_report_label_for_type(), |
| 2547 | 2547 | zYear); |
| 2548 | 2548 | blob_append_sql(&sql, |
| 2549 | - "SELECT DISTINCT strftime('%%%%W',mtime) AS wk, " | |
| 2549 | + "SELECT DISTINCT strftime('%%W',mtime) AS wk, " | |
| 2550 | 2550 | "count(*) AS n " |
| 2551 | 2551 | "FROM v_reports " |
| 2552 | 2552 | "WHERE %Q=substr(date(mtime),1,4) " |
| 2553 | 2553 | "AND mtime < current_timestamp ", |
| 2554 | 2554 | zYear); |
| 2555 | 2555 |
| --- src/timeline.c | |
| +++ src/timeline.c | |
| @@ -2544,11 +2544,11 @@ | |
| 2544 | Blob header = empty_blob; |
| 2545 | blob_appendf(&header, "Timeline events (%s) for the calendar weeks " |
| 2546 | "of %h", stats_report_label_for_type(), |
| 2547 | zYear); |
| 2548 | blob_append_sql(&sql, |
| 2549 | "SELECT DISTINCT strftime('%%%%W',mtime) AS wk, " |
| 2550 | "count(*) AS n " |
| 2551 | "FROM v_reports " |
| 2552 | "WHERE %Q=substr(date(mtime),1,4) " |
| 2553 | "AND mtime < current_timestamp ", |
| 2554 | zYear); |
| 2555 |
| --- src/timeline.c | |
| +++ src/timeline.c | |
| @@ -2544,11 +2544,11 @@ | |
| 2544 | Blob header = empty_blob; |
| 2545 | blob_appendf(&header, "Timeline events (%s) for the calendar weeks " |
| 2546 | "of %h", stats_report_label_for_type(), |
| 2547 | zYear); |
| 2548 | blob_append_sql(&sql, |
| 2549 | "SELECT DISTINCT strftime('%%W',mtime) AS wk, " |
| 2550 | "count(*) AS n " |
| 2551 | "FROM v_reports " |
| 2552 | "WHERE %Q=substr(date(mtime),1,4) " |
| 2553 | "AND mtime < current_timestamp ", |
| 2554 | zYear); |
| 2555 |