diff options
| author | David M <davidmj@users.sourceforge.net> | 2007-01-11 05:44:22 +0000 |
|---|---|---|
| committer | David M <davidmj@users.sourceforge.net> | 2007-01-11 05:44:22 +0000 |
| commit | 3a2a61baa4642eb91d2003ac47c8dc91ad9e1ef2 (patch) | |
| tree | 95a8f3fedd9034172fc0397b710515ae14488f42 /phpBB/includes/acp/acp_attachments.php | |
| parent | 7c18792a6e2c3481ec073828039c31c18d922167 (diff) | |
| download | forums-3a2a61baa4642eb91d2003ac47c8dc91ad9e1ef2.tar forums-3a2a61baa4642eb91d2003ac47c8dc91ad9e1ef2.tar.gz forums-3a2a61baa4642eb91d2003ac47c8dc91ad9e1ef2.tar.bz2 forums-3a2a61baa4642eb91d2003ac47c8dc91ad9e1ef2.tar.xz forums-3a2a61baa4642eb91d2003ac47c8dc91ad9e1ef2.zip | |
#6772
- some other random things
git-svn-id: file:///svn/phpbb/trunk@6880 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_attachments.php')
| -rw-r--r-- | phpBB/includes/acp/acp_attachments.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/phpBB/includes/acp/acp_attachments.php b/phpBB/includes/acp/acp_attachments.php index 1de254f6e2..eceaaa4cb5 100644 --- a/phpBB/includes/acp/acp_attachments.php +++ b/phpBB/includes/acp/acp_attachments.php @@ -673,6 +673,11 @@ class acp_attachments $selected = ($ext_group_row['upload_icon'] == $img) ? ' selected="selected"' : ''; } + if (strlen($img) > 255) + { + continue; + } + $filename_list .= '<option value="' . htmlspecialchars($img) . '"' . $selected . '>' . htmlspecialchars($img) . '</option>'; } } @@ -1266,10 +1271,20 @@ class acp_attachments { if ($row['site_ip']) { + if (strlen($row['site_ip']) > 40) + { + continue; + } + $iplist_tmp[] = "'" . $row['site_ip'] . "'"; } else if ($row['site_hostname']) { + if (strlen($row['site_hostname']) > 255) + { + continue; + } + $hostlist_tmp[] = "'" . $row['site_hostname'] . "'"; } // break; |
