- fixed bug in backend.inc

(check http://www.drop.org/backend.php)
- update theme.inc to use widget.inc
- small enhancements to function.inc
3-00
Dries Buytaert 2000-11-07 08:58:36 +00:00
parent e1130946c8
commit ed1a244398
3 changed files with 9 additions and 7 deletions

View File

@ -110,7 +110,7 @@ class backend {
$number += 1;
### Insert item in database:
$result = db_query("INSERT INTO headlines (id, title, link, number) VALUES('$this->id', '". stripslashes($title) ."', '". stripslashes($link) ."', '$number')");
$result = db_query("INSERT INTO headlines (id, title, link, number) VALUES('". check_input($this->id) ."', '". check_input($title) ."', '". check_input($link) ."', '". check_input($number) ."')");
}
### Mark channels as being updated:
@ -195,7 +195,7 @@ class backend {
#
function add() {
### Add channel:
$result = db_query("INSERT INTO channel (site, file, url, contact, timestamp) VALUES ('$this->site', '$this->file', '$this->url', '$this->contact', 42)");
$result = db_query("INSERT INTO channel (site, file, url, contact, timestamp) VALUES ('". check_input($this->site) ."', '". check_input($this->file) ."', '". check_input($this->url) ."', '". check_input($this->contact) ."', 42)");
}

View File

@ -15,7 +15,6 @@ function load_theme() {
else {
include $themes[key($themes)][0];
}
return new Theme();
}
@ -41,13 +40,16 @@ function discussion_num_replies($id, $count = 0) {
function discussion_num_filtered($sid, $pid) {
global $user;
$threshold = ($user->id) ? $user->threshold : "0";
$pid = ($pid) ? $pid : 0;
$result = db_query("SELECT COUNT(cid) FROM comments WHERE sid = $sid AND pid = $pid AND (votes != 0 AND score / votes < $threshold)");
return ($result) ? db_result($result, 0) : 0;
}
function format_plural($count, $one, $more) {
return ($count == 1) ? "$count $one" : "$count $more";
function format_plural($count, $singular, $plural) {
return ($count == 1) ? "$count $singular" : "$count $plural";
}
function format_date($timestamp, $type = "medium") {

View File

@ -4,11 +4,11 @@ include "includes/config.inc";
include "includes/database.inc";
include "includes/watchdog.inc";
include "includes/function.inc";
include "includes/template.inc";
include "includes/widget.inc";
include "includes/user.inc";
global $user;
$theme = load_theme();
?>
?>