Skip to content

Commit

Permalink
Fixed problem in manage_proj_update.php which gave a warning when edi…
Browse files Browse the repository at this point in the history
…ting projects with empty upload file paths.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@1204 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Jeroen Latour committed Aug 15, 2002
1 parent 294951e commit 53d764e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/ChangeLog
Expand Up @@ -51,6 +51,7 @@ Mantis ChangeLog
* Fixed problem deleting bugnotes.
* Fixed problem in core_API.php where constants were used before declaration
* Fixed problem in core_user_API.php which caused an infinite redirect in some browsers (such as Mozilla).
* Fixed problem in manage_proj_update.php which gave a warning when editing projects with empty upload file paths.
* Fixed problem with ambiguous column names in queries when using the text search or applying filters
* Fixed problem with print_assign_to_option_list() not selecting the current user.
* Fixed security hole in summary_graph_functions.php (Joao Gouveia: tharbad@kaotik.org)
Expand Down
2 changes: 1 addition & 1 deletion manage_proj_update.php
Expand Up @@ -16,7 +16,7 @@
}

# Make sure file path has trailing slash
if ( $f_file_path[strlen($f_file_path)-1] != '/' ) {
if ( $f_file_path && $f_file_path[strlen($f_file_path)-1] != '/' ) {
$f_file_path = $f_file_path.'/';
}

Expand Down

0 comments on commit 53d764e

Please sign in to comment.