From 133ab8c713b28e41c2628f02f176ef8b5a0b524d Mon Sep 17 00:00:00 2001
From: Andrew Dolgov
Date: Thu, 14 Apr 2011 17:48:26 +0400
Subject: [PATCH] replace references to ttrss-logo.png with logo.png
---
db-updater.php | 66 ++++++++++++++++----------------
opml.php | 2 +-
register.php | 102 ++++++++++++++++++++++++-------------------------
3 files changed, 85 insertions(+), 85 deletions(-)
diff --git a/db-updater.php b/db-updater.php
index fb40fa75b..6df74a864 100644
--- a/db-updater.php
+++ b/db-updater.php
@@ -4,15 +4,15 @@
require_once "sanity_check.php";
require_once "config.php";
require_once "db.php";
-
- $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
- init_connection($link);
+ $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
+
+ init_connection($link);
login_sequence($link);
-
+
$owner_uid = $_SESSION["uid"];
-
- if (!SINGLE_USER_MODE && $_SESSION["access_level"] < 10) {
+
+ if (!SINGLE_USER_MODE && $_SESSION["access_level"] < 10) {
$_SESSION["login_error_msg"] = __("Your access level is insufficient to run this script.");
render_login_form($link);
exit;
@@ -36,7 +36,7 @@ function confirmOP() {
}
-
+
@@ -45,7 +45,7 @@ function confirmOP() {
$result = "";
while(!feof($fp)) {
$tmp = fgetc($fp);
-
+
if($tmp == $delim) {
return $result;
}
@@ -53,27 +53,27 @@ function confirmOP() {
}
return $result;
}
-
+
$op = $_POST["op"];
-
+
$result = db_query($link, "SELECT schema_version FROM ttrss_version");
$version = db_fetch_result($result, 0, "schema_version");
-
+
$update_files = glob("schema/versions/".DB_TYPE."/*sql");
$update_versions = array();
-
+
foreach ($update_files as $f) {
$m = array();
preg_match_all("/schema\/versions\/".DB_TYPE."\/(\d*)\.sql/", $f, $m,
PREG_PATTERN_ORDER);
-
+
if ($m[1][0]) {
$update_versions[$m[1][0]] = $f;
}
}
-
+
ksort($update_versions, SORT_NUMERIC);
-
+
$latest_version = max(array_keys($update_versions));
if ($version == $latest_version) {
@@ -81,7 +81,7 @@ function confirmOP() {
if ($version != SCHEMA_VERSION) {
print_error(__("Could not update database"));
- print "" .
+ print "
" .
__("Could not find necessary schema file, need version:") .
" " . SCHEMA_VERSION . __(", found: ") . $latest_version . "
";
@@ -94,33 +94,33 @@ function confirmOP() {
return;
}
-
+
if (!$op) {
print_warning(__("Please backup your database before proceeding."));
-
+
print "" . T_sprintf("Your Tiny Tiny RSS database needs update to the latest version (%d to %d).", $version, $latest_version) . "
";
-
+
/* print "Available incremental updates:";
-
+
foreach (array_keys($update_versions) as $v) {
if ($v > $version) {
print " $v";
}
} */
-
+
print "
";
-
+
print "";
-
+
} else if ($op == "do") {
-
+
print "".__("Performing updates...")."
";
-
+
$num_updates = 0;
-
+
foreach (array_keys($update_versions) as $v) {
if ($v == $version + 1) {
print "".T_sprintf("Updating to version %d...", $v)."
";
@@ -135,32 +135,32 @@ function confirmOP() {
}
}
fclose($fp);
-
+
print "".__("Checking version... ");
-
+
$result = db_query($link, "SELECT schema_version FROM ttrss_version");
$version = db_fetch_result($result, 0, "schema_version");
-
+
if ($version == $v) {
print __("OK!");
} else {
print "".__("ERROR!")."";
return;
}
-
+
$num_updates++;
}
}
-
+
print "
".T_sprintf("Finished. Performed %d update(s) up to schema
version %d.", $num_updates, $version)."
";
-
+
print "";
}
-
+
?>
-
+
".__('OPML Utility')."
";
db_query($link, "BEGIN");
diff --git a/register.php b/register.php
index bd80a4df3..fb6261baf 100644
--- a/register.php
+++ b/register.php
@@ -11,18 +11,18 @@
require_once "sanity_check.php";
require_once "config.php";
require_once "db.php";
-
- $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
- init_connection($link);
+ $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
+
+ init_connection($link);
/* Remove users which didn't login after receiving their registration information */
if (DB_TYPE == "pgsql") {
- db_query($link, "DELETE FROM ttrss_users WHERE last_login IS NULL
+ db_query($link, "DELETE FROM ttrss_users WHERE last_login IS NULL
AND created < NOW() - INTERVAL '1 day' AND access_level = 0");
} else {
- db_query($link, "DELETE FROM ttrss_users WHERE last_login IS NULL
+ db_query($link, "DELETE FROM ttrss_users WHERE last_login IS NULL
AND created < DATE_SUB(NOW(), INTERVAL 1 DAY) AND access_level = 0");
}
@@ -37,7 +37,7 @@
$result = db_query($link, "SELECT id FROM ttrss_users WHERE
LOWER(login) = LOWER('$login')");
-
+
$is_registered = db_num_rows($result) > 0;
print "";
@@ -74,11 +74,11 @@
return false;
}
- var query = "register.php?action=check&login=" +
+ var query = "register.php?action=check&login=" +
param_escape(login);
new Ajax.Request(query, {
- onComplete: function(transport) {
+ onComplete: function(transport) {
try {
@@ -93,7 +93,7 @@
} else {
new Effect.Highlight(f.login, {startcolor : '#ff0000'});
f.sub_btn.disabled = true;
- }
+ }
} catch (e) {
exception_error("checkUsername_callback", e);
}
@@ -140,7 +140,7 @@
-
+
@@ -169,9 +169,9 @@
} ?>
-
-
-
+
+
+