diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-30 22:42:33 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-30 22:42:33 +0000 |
commit | bf3fef7084a5bc88b1bf6b72d53cdf849a7bda27 (patch) | |
tree | 49e12a968704ed3ad44b738c018fb3a65eb2ff3f /mod/ecml | |
parent | bb1f45eb02bac603d67ac08cb674c4050a245c28 (diff) | |
download | elgg-bf3fef7084a5bc88b1bf6b72d53cdf849a7bda27.tar.gz elgg-bf3fef7084a5bc88b1bf6b72d53cdf849a7bda27.tar.bz2 |
Refs #2598: Converted the rest of the $vars['url'] references to elgg_get_site_url()
git-svn-id: http://code.elgg.org/elgg/trunk@7150 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/ecml')
-rw-r--r-- | mod/ecml/views/default/ecml/input_ext.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/ecml/views/default/ecml/input_ext.php b/mod/ecml/views/default/ecml/input_ext.php index 6ea688e99..f9ab942e0 100644 --- a/mod/ecml/views/default/ecml/input_ext.php +++ b/mod/ecml/views/default/ecml/input_ext.php @@ -5,6 +5,6 @@ * @package ECML */ -$docs_href = "{$vars['url']}pg/ecml"; +$docs_href = elgg_get_site_url()."pg/ecml"; ?> -<a href="<?php echo $docs_href; ?>" class="longtext_control" title="<?php echo elgg_echo('ecml:help'); ?>" target="_new"><img src="<?php echo $vars['url']; ?>mod/ecml/graphics/ecml.png" width="50" height="15" alt="ECML" /></a>
\ No newline at end of file +<a href="<?php echo $docs_href; ?>" class="longtext_control" title="<?php echo elgg_echo('ecml:help'); ?>" target="_new"><img src="<?php echo elgg_get_site_url(); ?>mod/ecml/graphics/ecml.png" width="50" height="15" alt="ECML" /></a>
\ No newline at end of file |