mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Fix typos
This commit is contained in:
+1
-1
@@ -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
@@ -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;
|
||||
|
||||
@@ -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
@@ -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;
|
||||
|
||||
@@ -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.
|
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user