Skip to content

Commit

Permalink
M news_add.php
Browse files Browse the repository at this point in the history
M doc/ChangeLog
Fix #2978: URLs not hyperlinked in news_add page.


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@1981 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
vboctor committed Feb 21, 2003
1 parent 9182a25 commit b56c874
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions doc/ChangeLog
Expand Up @@ -18,6 +18,7 @@ Mantis ChangeLog
* Fix #2969: Bug not found error when deleting a bugnote.
* Fix #2970: Sending a reminder sends two notifications.
* Fix #2974: Message "APPLICATION WARNING #300" on main page.
* Fix #2978: URLs not hyperlinked in news_add page.
* Fix #2982: Having email_set_category set to EMAIL_CATEGORY_PROJECT_CATEGORY erased various mail headers.
* Languages: Updated German localisation.
* Removed config option (bugnote_include_file): Used file path directly since there is no reason to make it configurable.
Expand Down
4 changes: 2 additions & 2 deletions news_add.php
Expand Up @@ -21,8 +21,8 @@
$f_body = gpc_get_string( 'body', '' );

news_create( helper_get_current_project(), auth_get_current_user_id(), $f_view_state, $f_announcement, $f_headline, $f_body );
$f_headline = string_display( $f_headline );
$f_body = string_display_links( $f_body );
$f_headline = string_display_links( $f_headline );
$f_body = string_display_links( $f_body );
?>
<?php html_page_top1() ?>
<?php html_page_top2() ?>
Expand Down

0 comments on commit b56c874

Please sign in to comment.