Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
Fixed bug with & in journal entry titles.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelchisari authored and The Appleseed Project committed Jan 10, 2011
1 parent 952de50 commit f095b5d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions components/journal/models/journal.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public function __construct ( $pTables = null ) {
public function Load ( $pUserId, $pEntry ) {

$url = str_replace ( '-', ' ', $pEntry );
$url = str_replace ( '&', '&', $url );

// NOTE: Does a fuzzier search due to parsed out characters such as '?'
// TODO: Find a way to not parse out those characters.
Expand Down

0 comments on commit f095b5d

Please sign in to comment.