git-svn-id: file:///svn/phpbb/trunk@7759 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Henry Sudhof 2007-06-15 14:33:48 +00:00
parent ae0bf42808
commit 0cbe30842c
2 changed files with 3 additions and 1 deletions

View file

@ -275,6 +275,7 @@ p a {
<li>[Feature] Make effect of a changed hideonline permission instantaneous</li> <li>[Feature] Make effect of a changed hideonline permission instantaneous</li>
<li>[Fix] Do not overwrite larger memory values in the installer (Bug #12195)</li> <li>[Fix] Do not overwrite larger memory values in the installer (Bug #12195)</li>
<li>[Fix] Order forums on role permission mask (Bug #12337)</li> <li>[Fix] Order forums on role permission mask (Bug #12337)</li>
<li>[Fix] Show "no image" image when a non-selectable item was selected in the acp imageset editor - IE (Bug #12423)</li>
</ul> </ul>

View file

@ -1452,7 +1452,8 @@ parse_css_file = {PARSE_CSS_FILE}
'IMAGE_OPTIONS' => $img_options, 'IMAGE_OPTIONS' => $img_options,
'IMAGE_SIZE' => $image_width, 'IMAGE_SIZE' => $image_width,
'IMAGE_HEIGHT' => $image_height, 'IMAGE_HEIGHT' => $image_height,
'IMAGE_REQUEST' => $image_request, 'IMAGE_REQUEST' => (empty($image_filename)) ? 'images/no_image.png' : $image_request,
'TEST' => (empty($image_filename)) ? 'test' : 'tast',
'U_ACTION' => $this->u_action . "&amp;action=edit&amp;id=$imageset_id", 'U_ACTION' => $this->u_action . "&amp;action=edit&amp;id=$imageset_id",
'U_BACK' => $this->u_action, 'U_BACK' => $this->u_action,
'NAME' => $imageset_name, 'NAME' => $imageset_name,