Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | The "history" view of an edited post in the Forum shows all entries as text/plain. See discussion [https://fossil-scm.org/forum/forumpost/bb906aa6ab|on the Fossil forum]. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
f7c869b9fb7b7686228503a20dbefc50 |
| User & Date: | drh 2020-04-22 11:52:58.461 |
Context
|
2020-04-22
| ||
| 11:59 | Fix ./configure so that the --with-openssl=tree option works better. check-in: 19f11a8dec user: drh tags: trunk | |
| 11:52 | The "history" view of an edited post in the Forum shows all entries as text/plain. See discussion [https://fossil-scm.org/forum/forumpost/bb906aa6ab|on the Fossil forum]. check-in: f7c869b9fb user: drh tags: trunk | |
|
2020-04-20
| ||
| 17:37 | Update the built-in SQLite to the latest 3.32.0 alpha that includes the fix that omits O_NOFOLLOW when trying to open a directory just to fsync() it. check-in: c435144c70 user: drh tags: trunk | |
Changes
Changes to src/forum.c.
| ︙ | ︙ | |||
841 842 843 844 845 846 847 |
}else if( zMode[0]=='r' ){
style_submenu_element("Chronological", "%R/%s/%s?t=c", g.zPath, zName);
style_submenu_element("Hierarchical", "%R/%s/%s?t=h", g.zPath, zName);
forum_display_chronological(froot, fpid, 1);
}else if( zMode[0]=='y' ){
style_header("Edit History Of A Forum Post");
style_submenu_element("Complete Thread", "%R/%s/%s?t=a", g.zPath, zName);
| | | 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 |
}else if( zMode[0]=='r' ){
style_submenu_element("Chronological", "%R/%s/%s?t=c", g.zPath, zName);
style_submenu_element("Hierarchical", "%R/%s/%s?t=h", g.zPath, zName);
forum_display_chronological(froot, fpid, 1);
}else if( zMode[0]=='y' ){
style_header("Edit History Of A Forum Post");
style_submenu_element("Complete Thread", "%R/%s/%s?t=a", g.zPath, zName);
forum_display_history(froot, fpid, 1);
}else{
style_submenu_element("Chronological", "%R/%s/%s?t=c", g.zPath, zName);
style_submenu_element("Unformatted", "%R/%s/%s?t=r", g.zPath, zName);
forum_display_hierarchical(froot, fpid);
}
style_load_js("forum.js");
style_footer();
|
| ︙ | ︙ |