Zeile 1 | Zeile 1 |
---|
<?php /** * MyBB 1.4
|
<?php /** * MyBB 1.4
|
* Copyright � 2008 MyBB Group, All Rights Reserved
| * Copyright © 2008 MyBB Group, All Rights Reserved
|
* * Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* * Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* $Id: attachments.php 4304 2009-01-02 01:11:56Z chris $
| * $Id: attachments.php 4481 2009-10-13 08:53:34Z Tomm $
|
*/
// Disallow direct access to this file for security reasons
| */
// Disallow direct access to this file for security reasons
|
Zeile 664 | Zeile 664 |
---|
}
// LESS THAN or GREATER THAN
|
}
// LESS THAN or GREATER THAN
|
if($mybb->input['dateuploaded'])
| if($mybb->input['dateuploaded'] && $mybb->request_method == "post")
|
{
|
{
|
$mybb->input['dateuploaded'] = TIME_NOW-60*60*24;
| $mybb->input['dateuploaded'] = TIME_NOW-$mybb->input['dateuploaded']*60*60*24;
|
}
|
}
|
if($mybb->input['filesize'])
| if($mybb->input['filesize'] && $mybb->request_method == "post")
|
{ $mybb->input['filesize'] *= 1024; }
| { $mybb->input['filesize'] *= 1024; }
|
Zeile 834 | Zeile 834 |
---|
$form_container->output_row($lang->username_is, "", $form->generate_text_box('username', $mybb->input['username'], array('id' => 'username')), 'username');
$more_options = array(
|
$form_container->output_row($lang->username_is, "", $form->generate_text_box('username', $mybb->input['username'], array('id' => 'username')), 'username');
$more_options = array(
|
"greater_than" => $lang->more_than, "less_than" => $lang->less_than
| "less_than" => $lang->more_than, "greater_than" => $lang->less_than
|
);
$greater_options = array(
| );
$greater_options = array(
|