Fossil SCM
Fix a typo in the timeline EVENT table entries generated by "fossil rebuild" in the previous check-in.
Commit
fd486df4926a46ecad5f88bc3b48f07a95debc06
Parent
87540ed6e60b7bc…
1 file changed
+2
-3
+2
-3
| --- src/manifest.c | ||
| +++ src/manifest.c | ||
| @@ -1831,13 +1831,12 @@ | ||
| 1831 | 1831 | blob_zero(&comment); |
| 1832 | 1832 | for(i=0; i<p->nTag; i++){ |
| 1833 | 1833 | zUuid = p->aTag[i].zUuid; |
| 1834 | 1834 | if( i==0 || fossil_strcmp(zUuid, p->aTag[i-1].zUuid)!=0 ){ |
| 1835 | 1835 | if( i>0 ) blob_append(&comment, " ", 1); |
| 1836 | - blob_appendf(&comment, "Tag chagnes on " | |
| 1837 | - "<a href=\"%s/timeline?dp=%S&n=4\">[%S]</a>:", | |
| 1838 | - g.zTop, zUuid, zUuid); | |
| 1836 | + blob_appendf(&comment, "Tag changes on [/timeline?dp=%S&n=4 | %S]:", | |
| 1837 | + zUuid, zUuid); | |
| 1839 | 1838 | } |
| 1840 | 1839 | zName = p->aTag[i].zName; |
| 1841 | 1840 | zValue = p->aTag[i].zValue; |
| 1842 | 1841 | if( zName[0]=='-' ){ |
| 1843 | 1842 | blob_appendf(&comment, " Cancel"); |
| 1844 | 1843 |
| --- src/manifest.c | |
| +++ src/manifest.c | |
| @@ -1831,13 +1831,12 @@ | |
| 1831 | blob_zero(&comment); |
| 1832 | for(i=0; i<p->nTag; i++){ |
| 1833 | zUuid = p->aTag[i].zUuid; |
| 1834 | if( i==0 || fossil_strcmp(zUuid, p->aTag[i-1].zUuid)!=0 ){ |
| 1835 | if( i>0 ) blob_append(&comment, " ", 1); |
| 1836 | blob_appendf(&comment, "Tag chagnes on " |
| 1837 | "<a href=\"%s/timeline?dp=%S&n=4\">[%S]</a>:", |
| 1838 | g.zTop, zUuid, zUuid); |
| 1839 | } |
| 1840 | zName = p->aTag[i].zName; |
| 1841 | zValue = p->aTag[i].zValue; |
| 1842 | if( zName[0]=='-' ){ |
| 1843 | blob_appendf(&comment, " Cancel"); |
| 1844 |
| --- src/manifest.c | |
| +++ src/manifest.c | |
| @@ -1831,13 +1831,12 @@ | |
| 1831 | blob_zero(&comment); |
| 1832 | for(i=0; i<p->nTag; i++){ |
| 1833 | zUuid = p->aTag[i].zUuid; |
| 1834 | if( i==0 || fossil_strcmp(zUuid, p->aTag[i-1].zUuid)!=0 ){ |
| 1835 | if( i>0 ) blob_append(&comment, " ", 1); |
| 1836 | blob_appendf(&comment, "Tag changes on [/timeline?dp=%S&n=4 | %S]:", |
| 1837 | zUuid, zUuid); |
| 1838 | } |
| 1839 | zName = p->aTag[i].zName; |
| 1840 | zValue = p->aTag[i].zValue; |
| 1841 | if( zName[0]=='-' ){ |
| 1842 | blob_appendf(&comment, " Cancel"); |
| 1843 |