mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-14 11:26:26 +00:00
Empty commit
This commit is contained in:
parent
1ba032a617
commit
adc0635d01
@ -73,7 +73,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Let's hope we got some results - start printing out the content.
|
// Let's hope we got some results - start printing out the content.
|
||||||
show_header('Forums'.' > '.'Search');
|
show_header('Forums'.' > '.'Search', 'bbcode');
|
||||||
?>
|
?>
|
||||||
<div class="thin">
|
<div class="thin">
|
||||||
<h2><a href="forums.php">Forums</a> > Search<?=$Title?></h2>
|
<h2><a href="forums.php">Forums</a> > Search<?=$Title?></h2>
|
||||||
|
@ -372,6 +372,14 @@
|
|||||||
<? } ?>
|
<? } ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<? if ($LastVote > $TimeAdded) { ?>
|
||||||
|
<tr>
|
||||||
|
<td class="label">Last Voted</td>
|
||||||
|
<td>
|
||||||
|
<?=time_diff($LastVote)?>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<? } ?>
|
||||||
<? if($CanVote) { ?>
|
<? if($CanVote) { ?>
|
||||||
<tr id="voting">
|
<tr id="voting">
|
||||||
<td class="label">Custom Vote (MB)</td>
|
<td class="label">Custom Vote (MB)</td>
|
||||||
|
@ -97,9 +97,9 @@
|
|||||||
LIMIT $Limit");
|
LIMIT $Limit");
|
||||||
$DB->query("SELECT FOUND_ROWS()");
|
$DB->query("SELECT FOUND_ROWS()");
|
||||||
list($Results) = $DB->next_record();
|
list($Results) = $DB->next_record();
|
||||||
$DB->set_query_id($RS);
|
|
||||||
|
|
||||||
show_header('User Flow');
|
show_header('User Flow');
|
||||||
|
$DB->set_query_id($RS);
|
||||||
?>
|
?>
|
||||||
<div class="thin">
|
<div class="thin">
|
||||||
<? if(!isset($_GET['page'])) { ?>
|
<? if(!isset($_GET['page'])) { ?>
|
||||||
|
@ -50,6 +50,9 @@
|
|||||||
if(!preg_match("/^".IMAGE_REGEX."$/i", $Image)) {
|
if(!preg_match("/^".IMAGE_REGEX."$/i", $Image)) {
|
||||||
$Image = '';
|
$Image = '';
|
||||||
}
|
}
|
||||||
|
if(strpos($Image, 'tinypic') || strpos($Image, 'dsimg')) {
|
||||||
|
error($Image . " This image host is not allowed");
|
||||||
|
}
|
||||||
$Summary = db_string($_POST['summary']);
|
$Summary = db_string($_POST['summary']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -322,6 +322,9 @@
|
|||||||
if (preg_match($RegX, $Properties['Image'], $Matches)) {
|
if (preg_match($RegX, $Properties['Image'], $Matches)) {
|
||||||
$Properties['Image'] = $Matches[1].'.jpg';
|
$Properties['Image'] = $Matches[1].'.jpg';
|
||||||
}
|
}
|
||||||
|
if(strpos($Properties['Image'], 'tinypic') || strpos($Properties['Image'], 'dsimg')) {
|
||||||
|
$Err = $Properties['Image'] . " This image host is not allowed";
|
||||||
|
}
|
||||||
|
|
||||||
//******************************************************************************//
|
//******************************************************************************//
|
||||||
//--------------- Make variables ready for database input ----------------------//
|
//--------------- Make variables ready for database input ----------------------//
|
||||||
|
Loading…
Reference in New Issue
Block a user