Ticket #306 (closed defect: fixed)

Opened 8 months ago

Last modified 8 months ago

Search overwriting run_result

Reported by: justinr Assigned to: nobody
Priority: normal Milestone: 0.9.1
Component: core Version: 0.9.0
Severity: normal Keywords:
Cc: Patch Included: 0
Review Stage: readyforcheckin

Description

When search/ has moved from units/ to mod/, an operation on run_result was left as an assignment instead of an append. In mod/search/lib/tags_display_personal.php, make this change:

- $run_result = "<p>" . gettext("No tags found for this user.") . "</p>"; + $run_result .= "<p>" . gettext("No tags found for this user.") . "</p>";

Aberrant behavior only displays if another plugin ties into the search:tags:personal:display function hook, the other mod comes before 'search' in the alphabet, and the user in question has no internal Elgg tags.

Change History

02/07/08 20:48:24 changed by justinr

since the patch text got eaten, the only change is "=" to ".=" in that line.

02/14/08 14:36:00 changed by misja

  • status changed from new to closed.
  • resolution set to fixed.

Was a clear typo, fixed in r1552

02/14/08 14:37:01 changed by misja

  • review_stage changed from unreviewed to readyforcheckin.