Skip to content

Conversation

valioDOTch
Copy link

@valioDOTch valioDOTch commented Feb 21, 2017

I assume it was forgotten that the getBaseUrl regular expression should be adapted, after it was decided that index.html shall become index.php.

Currently I have to use a pretty ugly hack with the --body-html config

var getBaseUrl = Docs.controller.Content.prototype.getBaseUrl;
Docs.controller.Content.prototype.getBaseUrl = function(){
    var r = getBaseUrl.apply(this,arguments);
    r = r.replace('/index.php','');
    return r;
}

I assume it was forgotten that this replace part should be renamed, after it was decided that index.html shall become index.php.

Currently I have to use a pretty ugly hack with the --body-html config

```
var getBaseUrl = Docs.controller.Content.prototype.getBaseUrl;
Docs.controller.Content.prototype.getBaseUrl = function(){
    var r = getBaseUrl.apply(this,arguments);
    r = r.replace('/index.php','');
    return r;
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant