diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-02-14 18:13:59 +0100 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-02-14 18:13:59 +0100 |
commit | a46146d01605624e8d8f040699f7c70f92c04773 (patch) | |
tree | 5324f27647bb1723533d655230b1b1cc17298c88 /www/gsearch/index.php | |
parent | 6d752be4de3f08840d4453dfcfefd469fb79d45a (diff) | |
download | semanticscuttle-a46146d01605624e8d8f040699f7c70f92c04773.tar.gz semanticscuttle-a46146d01605624e8d8f040699f7c70f92c04773.tar.bz2 |
Fix bug #3178597: Broken link to context in gsearch admin index page
Diffstat (limited to 'www/gsearch/index.php')
-rw-r--r-- | www/gsearch/index.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/gsearch/index.php b/www/gsearch/index.php index 585536a..70be05e 100644 --- a/www/gsearch/index.php +++ b/www/gsearch/index.php @@ -31,7 +31,9 @@ if($GLOBALS['enableGoogleCustomSearch']==false) { echo '<p><small>'; echo T_('Admin tips: '); echo T_('To refresh manually Google Custom Search Engine, goes to: '); - echo '<a href="http://www.google.com/coop/cse/cref?cref='.ROOT.'search/context.php">http://www.google.com/coop/cse/cref</a><br/>'; + echo '<a href="http://www.google.com/coop/cse/cref?cref=' + . ROOT . 'gsearch/context.php">http://www.google.com/coop/cse/cref</a>' + . '<br/>'; echo T_('If no result appears, check that all the urls are valid in the admin section.'); echo '</small></p>'; |