Skip to content

Commit

Permalink
Changed incorect query string from '?q=' to '?Search=' in the Related…
Browse files Browse the repository at this point in the history
…Main box on the main search results page
  • Loading branch information
bauerjj committed Jan 17, 2013
1 parent e944f1e commit 68e6503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/class.relatedsearches.module.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function ToString() {
<ul class="PanelInfo PanelDiscussions">
<?php foreach ($this->RelatedSearches as $Row): ?>
<li class="Item">
<?php $QueryString = 'search/results?q=' . str_replace(' ', '+', $Row->keywords); ?>
<?php $QueryString = 'search/results?Search=' . str_replace(' ', '+', $Row->keywords); ?>
<?php echo Anchor($Row->keywords, $QueryString, '', array('class'=>'Title')) ?>
</li>
<?php endforeach ?>
Expand Down

1 comment on commit 68e6503

@bauerjj
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix #7

Please sign in to comment.