Skip to content

Commit

Permalink
Merge pull request #675 from RhavoX/patch-1
Browse files Browse the repository at this point in the history
Fix retrieval of the alternate stylesheet
  • Loading branch information
turnermm committed Aug 3, 2022
2 parents 8c72d27 + 41d24d5 commit 77dae46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action/edit.php
Expand Up @@ -529,7 +529,7 @@ function alt_style_sheet() {
while (!feof($fh) && $line_num < 4) {
$line = fgets($fh,1024); //msg($line);
if(strpos($line,$tpl_name)!==false) {
return DOKU_BASE . '/lib/plugins/ckgedit/ckeditor/css/_style.css' ;
return DOKU_URL . '/lib/plugins/ckgedit/ckeditor/css/_style.css' ;
break;
}
$line_num ++;
Expand Down

0 comments on commit 77dae46

Please sign in to comment.