diff options
author | thomascube <thomas@roundcube.net> | 2006-05-01 16:27:19 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-05-01 16:27:19 +0000 |
commit | dd53e2b489e8787bb339511e33f2d6c4fd5efe3f (patch) | |
tree | 59100ce9248efa611c05157aaab4d558cac544bb /program/include/rcube_shared.inc | |
parent | fecb03f44a3a2c3dace7d17eebebbb787a9042e3 (diff) |
Started integrating GoogieSpell
Diffstat (limited to 'program/include/rcube_shared.inc')
-rw-r--r-- | program/include/rcube_shared.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/include/rcube_shared.inc b/program/include/rcube_shared.inc index 77753f5b4..fe1a560a3 100644 --- a/program/include/rcube_shared.inc +++ b/program/include/rcube_shared.inc @@ -193,6 +193,7 @@ class rcube_html_page // correct absolute pathes in images and other tags $output = preg_replace('/(src|href|background)=(["\']?)(\/[a-z0-9_\-]+)/Ui', "\\1=\\2$base_path\\3", $output); + $output = str_replace('$__skin_path', $base_path, $output); print rcube_charset_convert($output, 'UTF-8', $this->charset); } |