Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: akismet.php 5380 2011-02-21 12:04:43Z Tomm $
| * $Id: akismet.php 5297 2010-12-28 22:01:14Z Tomm $
|
*/
// Disallow direct access to this file for security reasons
| */
// Disallow direct access to this file for security reasons
|
Zeile 57 | Zeile 57 |
---|
"website" => "http://mybb.com", "author" => "MyBB Group", "authorsite" => "http://mybb.com",
|
"website" => "http://mybb.com", "author" => "MyBB Group", "authorsite" => "http://mybb.com",
|
"version" => "1.2.1",
| "version" => "1.2.2",
|
"guid" => "e57a80dbe7ff85083596a1a3b7da3ce7", "compatibility" => "16*", );
| "guid" => "e57a80dbe7ff85083596a1a3b7da3ce7", "compatibility" => "16*", );
|
Zeile 320 | Zeile 320 |
---|
$query = $db->simple_select("posts", "subject", "pid='{$pid}'", 1); $post = $db->fetch_array($query);
|
$query = $db->simple_select("posts", "subject", "pid='{$pid}'", 1); $post = $db->fetch_array($query);
|
| $post['subject'] = htmlspecialchars_uni($post['subject']);
|
if(!$post) {
| if(!$post) {
|
Zeile 1079 | Zeile 1080 |
---|
} $table->construct_cell($form->generate_check_box("akismet[{$post['pid']}]", 1, ''));
|
} $table->construct_cell($form->generate_check_box("akismet[{$post['pid']}]", 1, ''));
|
$table->construct_cell("<span style=\"float: right;\">{$lang->username}: {$username}</span> <span style=\"float: left;\">{$lang->title}: {$post['subject']} <strong>(".my_date($mybb->settings['dateformat'], $post['dateline']).", ".my_date($mybb->settings['timeformat'], $post['dateline']).")</strong></span>");
| $table->construct_cell("<span style=\"float: right;\">{$lang->username}: {$username}</span> <span style=\"float: left;\">{$lang->title}: ".htmlspecialchars_uni($post['subject'])." <strong>(".my_date($mybb->settings['dateformat'], $post['dateline']).", ".my_date($mybb->settings['timeformat'], $post['dateline']).")</strong></span>");
|
$table->construct_row(); $parser_options = array(
| $table->construct_row(); $parser_options = array(
|