Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fixed bug that did not display the "X similar events" message for the last item on the timeline. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
def89b9393ccb6936ee19a8aeae0bce4 |
| User & Date: | jeremy_c 2010-01-01 01:30:14.000 |
References
|
2010-01-08
| ||
| 20:50 | • Ticket [68b4e947d0] '"Fossil"' is not recognized as an internal or external command status still Open with 1 other change ... (artifact: aac58b496d user: jeremy_c) | |
|
2010-01-01
| ||
| 19:36 | • New ticket [5483de2ea6] Changing to non default skin causes database error. ... (artifact: e8b78a0a52 user: anonymous) | |
Context
|
2010-01-01
| ||
| 19:49 | [5483de2ea6] Added two single quotes around baseurl fixing the bug ... (check-in: af25881866 user: jeremy_c tags: trunk) | |
| 01:30 | Fixed bug that did not display the "X similar events" message for the last item on the timeline. ... (check-in: def89b9393 user: jeremy_c tags: trunk) | |
|
2009-12-31
| ||
| 22:30 | Added SQL function user() implemented by Brian ... (check-in: a2c2e3b115 user: jeremy_c tags: trunk) | |
Changes
Changes to src/timeline.c.
| ︙ | ︙ | |||
302 303 304 305 306 307 308 309 310 311 312 313 314 315 |
}else{
@ (user: %h(zUser))
}
if( xExtra ){
xExtra(rid);
}
@ </td></tr>
}
@ </table>
}
/*
** Create a temporary table suitable for storing timeline data.
*/
| > > > > > > | 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 |
}else{
@ (user: %h(zUser))
}
if( xExtra ){
xExtra(rid);
}
@ </td></tr>
}
if( suppressCnt ){
@ <tr><td><td><td>
@ <small><i>... %d(suppressCnt) similar
@ event%s(suppressCnt>1?"s":"") omitted.</i></small></tr>
suppressCnt = 0;
}
@ </table>
}
/*
** Create a temporary table suitable for storing timeline data.
*/
|
| ︙ | ︙ |