Modify ↓
Opened 18 years ago
Closed 18 years ago
#3571 closed defect (worksforme)
username and authname on wiki commit
Reported by: | Owned by: | Jonas Borgström | |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | general | Version: | 0.9.6 |
Severity: | normal | Keywords: | username authname submit |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
It is possible to add wiki entries (i guess also tickets or other things) with no or wrong username. e.b. web_ui.py
page.save(req.args.get('author'), req.args.get('comment'), req.remote_addr)
maybe its better to use something like
req.authname or req.args.get('author') page.save(a, req.args.get('comment'), req.remote_addr)
Or maybe concat them together. Or similar.
Attachments (0)
Note:
See TracTickets
for help on using tickets.
In 0.10, logged in users don't have the possibility to clear or enter a different name, see r3461.
See also #1890 for related issues.