Opened 18 years ago
Closed 18 years ago
#3901 closed defect (fixed)
Editing video information in MythWeb always sets parental level to 0
| Reported by: | anonymous | Owned by: | Rob Smith |
|---|---|---|---|
| Priority: | minor | Milestone: | 0.21 |
| Component: | mythweb | Version: | head |
| Severity: | medium | Keywords: | |
| Cc: | Ticket locked: | no |
Description
Due to a typo in edit.php the parental level is always set to 0 when edting and saving video information in MythWeb. As a result the edited video will not be shown in MythVideo listings (except for the Video Manager).
Fixing this is pretty simple. There is a typo in line 115 of /mythweb/modules/video/edit.php. Replacing
<select name-"showlevel">
with
<select name="showlevel">
fixed this problem for me.
Change History (2)
Note:
See TracTickets
for help on using tickets.

(In [14840]) Fixes #3901, this fixes a typo that set the parental level to 0 on all edited videos.