Actions
Bug #6
closedlast patch for indexfiles broke them for the *last* indexfile in the list
Status:
Fixed
Priority:
Normal
Category:
core
Target version:
-
ASK QUESTIONS IN Forums:
Description
Seems like that patch broke a part of the indexfiles.
If matching only on the last specified indexfile I always got to the directory-index-part
and got a 403 because of that.
The removed code hat a "break;" in it which broke out at once of the for-loop.
Now it loops one more time therefore k is one number too high.
I got this "fixed" by changing the check for directory-index from:
if (k con->conf.indexfiles->used) {[BR]
... to ...
if (!found && k con->conf.indexfiles->used) {[BR]
Don't know if thats the proper fix but at least it works now again for me.
Thomas
-- thomas.seifert
Updated by Anonymous over 19 years ago
- Status changed from New to Fixed
- Resolution set to fixed
Patch is correct. See r14
Added a testcase for it.
-- jan
Actions
Also available in: Atom