Differences From Artifact [d752f8b645]:
- File src/style.c — part of check-in [89b724dcfa] at 2021-03-24 15:40:49 on branch trunk — Update the form spider protections so that links to /register go through even if spider protection is fully enabled. This allows self-registration even if user "nobody" has no permissions. (user: drh size: 50683) [more...]
To Artifact [dcaff8d262]:
- File src/style.c — part of check-in [3e35068260] at 2021-05-22 12:40:20 on branch trunk — In the submenu of the /rptview page: 1) add "Reports" that links to /reportlist page (see [forum:/forumpost/612170e31007|forumpost 612170e3]); 2) fix a "Raw" link, that was incorrect for the case when /rptview is accessed through an alias. The later was addressed in [bed4b0f7fc58], but the bugfix was incomplete. Both of these amendments used to live on 'rptview-submenu-paralink' branch - this check-in places them on trunk. (user: george size: 50865) [more...]
| ︙ | |||
903 904 905 906 907 908 909 910 911 912 913 914 915 916 | 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 | + + + + |
cgi_tag_query_parameter("udc");
}
@ <div class="submenu">
if( nSubmenu>0 ){
qsort(aSubmenu, nSubmenu, sizeof(aSubmenu[0]), submenuCompare);
for(i=0; i<nSubmenu; i++){
struct Submenu *p = &aSubmenu[i];
/* switching away from the %h formatting below might be dangerous
** because some places use %s to compose zLabel and zLink;
** e.g. /rptview page
*/
if( p->zLink==0 ){
@ <span class="label">%h(p->zLabel)</span>
}else{
@ <a class="label" href="%h(p->zLink)">%h(p->zLabel)</a>
}
}
}
|
| ︙ |