aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-02-14 18:13:59 +0100
committerChristian Weiske <cweiske@cweiske.de>2011-02-14 18:13:59 +0100
commita46146d01605624e8d8f040699f7c70f92c04773 (patch)
tree5324f27647bb1723533d655230b1b1cc17298c88
parent6d752be4de3f08840d4453dfcfefd469fb79d45a (diff)
downloadsemanticscuttle-a46146d01605624e8d8f040699f7c70f92c04773.tar.gz
semanticscuttle-a46146d01605624e8d8f040699f7c70f92c04773.tar.bz2
Fix bug #3178597: Broken link to context in gsearch admin index page
-rw-r--r--doc/ChangeLog5
-rw-r--r--www/gsearch/index.php4
2 files changed, 8 insertions, 1 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 60401d4..ee74bc9 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -13,6 +13,11 @@ ChangeLog for SemantiScuttle
- api/posts/add respects the "replace" parameter now
+0.97.2 - 2011-02-XX
+-------------------
+- Fix bug #3178597: Broken link to context in gsearch admin index page
+
+
0.97.1 - 2010-09-30
-------------------
This is a security release! We do highly recommend to update
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>';