Skip to content

Commit

Permalink
Modified user guide
Browse files Browse the repository at this point in the history
  • Loading branch information
ericlbarnes committed Apr 27, 2010
2 parents 763ece9 + 24cb197 commit d123b3b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 3 additions & 3 deletions upload/includes/application/controllers/search.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ function index()
$wherestring = "";
for ($i = 0; $i < $numkeywords; $i++)
{
if ($i > 0)
if ($i > 0)
{
$wherestring = mysql_real_escape_string($wherestring) . " AND ";
$wherestring .= " AND ";
}
$wherestring = $wherestring .
$wherestring = $wherestring .
" (article_title LIKE '%". mysql_real_escape_string($keywords[$i]) .
"%' OR article_short_desc LIKE '%" . mysql_real_escape_string($keywords[$i]) .
"%' OR article_description LIKE '%". mysql_real_escape_string($keywords[$i]) ."%') ";
Expand Down
8 changes: 8 additions & 0 deletions user_guide/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,14 @@ <h3>Changes:</h3>
<ul>
<li>Moved two config settings from application/config/config.php to includes/config.php</li>
</ul>
<h2>Version 1.0.0 RC4</h2>

<p>Release Date: April 3rd, 2010.</p>

<h3>Bug Fixes</h3>
<ul>
<li>Fixed issue with searching</li>
</ul>

<h2>Version 1.0.0 RC3</h2>

Expand Down

0 comments on commit d123b3b

Please sign in to comment.