Fix typos

This commit is contained in:
DariusIII
2016-10-25 14:47:39 +02:00
parent 104d82fe87
commit 460ff63a51
6 changed files with 10 additions and 9 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ class Books
$this->pdo = ($options['Settings'] instanceof DB ? $options['Settings'] : new DB());
$this->pubkey = Settings::value('APIs..amazonpubkey');
$this->privkey = Settings::value('APIs..amazonaprivkey');
$this->privkey = Settings::value('APIs..amazonprivkey');
$this->asstag = Settings::value('APIs..amazonassociatetag');
$this->bookqty = (Settings::value('..maxbooksprocessed') != '') ? Settings::value('..maxbooksprocessed') : 300;
$this->sleeptime = (Settings::value('..amazonsleep') != '') ? Settings::value('..amazonsleep') : 1000;
+1 -1
View File
@@ -87,7 +87,7 @@ class Console
$this->pdo = ($options['Settings'] instanceof DB ? $options['Settings'] : new DB());
$this->pubkey = Settings::value('APIs..amazonpubkey');
$this->privkey = Settings::value('APIs..amazonaprivkey');
$this->privkey = Settings::value('APIs..amazonprivkey');
$this->asstag = Settings::value('APIs..amazonassociatetag');
$this->gameqty = (Settings::value('..maxgamesprocessed') != '') ? Settings::value('..maxgamesprocessed') : 150;
$this->sleeptime = (Settings::value('..amazonsleep') != '') ? Settings::value('..amazonsleep') : 1000;
+1 -1
View File
@@ -56,7 +56,7 @@ class MiscSorter
$this->movie = new Movie(['Echo' => $this->echooutput, 'Settings' => $this->pdo]);
$this->music = new Music(['Echo' => $this->echooutput, 'Settings' => $this->pdo]);
$this->pubkey = Settings::value('APIs..amazonpubkey');
$this->privkey = Settings::value('APIs..amazonaprivkey');
$this->privkey = Settings::value('APIs..amazonprivkey');
$this->asstag = Settings::value('APIs..amazonassociatetag');
}
+1 -1
View File
@@ -78,7 +78,7 @@ class Music
$this->pdo = ($options['Settings'] instanceof DB ? $options['Settings'] : new DB());
$this->pubkey = Settings::value('APIs..amazonpubkey');
$this->privkey = Settings::value('APIs..amazonaprivkey');
$this->privkey = Settings::value('APIs..amazonprivkey');
$this->asstag = Settings::value('APIs..amazonassociatetag');
$this->musicqty = (Settings::value('..maxmusicprocessed') != '') ? Settings::value('..maxmusicprocessed') : 150;
$this->sleeptime = (Settings::value('..amazonsleep') != '') ? Settings::value('..amazonsleep') : 1000;
+1
View File
@@ -177,3 +177,4 @@ tmux running exit 0 Determines if the running tmux monitor script should exit. I
max headers iteration 1000000 The maximum number of headers that update binaries is given as the total range. This ensures that a total of no more than this amount is attempted to be downloaded per group. max_headers_iteration
userhostexclusion userhostexclusion
siteseed siteseed
showrecentforumposts showrecentforumposts
Can't render this file because it contains an unexpected character in line 4 and column 214.
+5 -5
View File
@@ -1086,11 +1086,11 @@ CREATE TABLE users_releases (
DROP TABLE IF EXISTS user_downloads;
CREATE TABLE user_downloads (
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
users_id INT(16) NOT NULL,
hosthash VARCHAR(50) NOT NULL,
timestamp DATETIME NOT NULL,
releases_id INT(11) NOT NULL COMMENT 'FK to releases.id'
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
users_id INT(16) NOT NULL,
hosthash VARCHAR(50) NOT NULL,
timestamp DATETIME NOT NULL,
releases_id INT(11) NOT NULL COMMENT 'FK to releases.id'
PRIMARY KEY (id),
KEY userid (users_id),
KEY timestamp (timestamp)