mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 05:43:55 -07:00
Merge pull request #457 from Exileum/issue/451
Fix #451. Undefined index: L_CRON_EDIT_HEAD.
This commit is contained in:
commit
39a2031470
7 changed files with 2 additions and 38 deletions
12
.env.example
12
.env.example
|
@ -1,12 +0,0 @@
|
||||||
# Common params
|
|
||||||
APP_NAME=TorrentPier
|
|
||||||
APP_ENV=local
|
|
||||||
APP_DEBUG=false
|
|
||||||
|
|
||||||
# Database credentials
|
|
||||||
DB_CONNECTION=mysql
|
|
||||||
DB_HOST=localhost
|
|
||||||
DB_PORT=3306
|
|
||||||
DB_DATABASE=torrentpier
|
|
||||||
DB_USERNAME=root
|
|
||||||
DB_PASSWORD=secret
|
|
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,7 +1,6 @@
|
||||||
### TorrentPier ###
|
### TorrentPier ###
|
||||||
.idea
|
.idea
|
||||||
.php_cs.cache
|
.php_cs.cache
|
||||||
bower_components
|
|
||||||
composer.phar
|
composer.phar
|
||||||
composer.lock
|
composer.lock
|
||||||
configs/local.php
|
configs/local.php
|
||||||
|
@ -14,13 +13,10 @@ internal_data/log
|
||||||
internal_data/sitemap
|
internal_data/sitemap
|
||||||
internal_data/triggers
|
internal_data/triggers
|
||||||
library/config.local.php
|
library/config.local.php
|
||||||
node_modules
|
|
||||||
vendor
|
vendor
|
||||||
yarn.lock
|
|
||||||
|
|
||||||
### Archives ###
|
### Archives ###
|
||||||
*.log
|
*.log
|
||||||
*.zip
|
|
||||||
*.rar
|
*.rar
|
||||||
*.tar
|
*.tar
|
||||||
*.gz
|
*.gz
|
||||||
|
|
1
CNAME
1
CNAME
|
@ -1 +0,0 @@
|
||||||
torrentpier.com
|
|
|
@ -1 +0,0 @@
|
||||||
theme: jekyll-theme-leap-day
|
|
|
@ -1,6 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<cross-domain-policy xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:noNamespaceSchemaLocation="http://www.adobe.com/xml/schemas/PolicyFileSocket.xsd">
|
|
||||||
<allow-access-from domain="*" to-ports="*" secure="false"/>
|
|
||||||
<site-control permitted-cross-domain-policies="master-only"/>
|
|
||||||
</cross-domain-policy>
|
|
12
package.json
12
package.json
|
@ -1,12 +0,0 @@
|
||||||
{
|
|
||||||
"name": "torrentpier",
|
|
||||||
"version": "2.2.2",
|
|
||||||
"description": "Bull-powered BitTorrent tracker engine",
|
|
||||||
"main": "index.js",
|
|
||||||
"repository": "git@github.com:torrentpier/torrentpier.git",
|
|
||||||
"author": "Exile <admin@torrentpier.com>",
|
|
||||||
"license": "MIT",
|
|
||||||
"dependencies": {
|
|
||||||
"jquery": "^3.2.1"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -121,7 +121,7 @@ tr.hl-tr:hover td { background-color: #CFC !important; }
|
||||||
<!-- ENDIF / TPL_CRON_LIST -->
|
<!-- ENDIF / TPL_CRON_LIST -->
|
||||||
|
|
||||||
<!-- IF TPL_CRON_EDIT -->
|
<!-- IF TPL_CRON_EDIT -->
|
||||||
<h1>{L_CRON_EDIT_HEAD}</h1>
|
<h1>{L_CRON_EDIT_HEAD_EDIT}</h1>
|
||||||
|
|
||||||
<a href="admin_cron.php?mode=list">{L_CRON_LIST}</a>
|
<a href="admin_cron.php?mode=list">{L_CRON_LIST}</a>
|
||||||
<br /><br />
|
<br /><br />
|
||||||
|
@ -133,7 +133,7 @@ tr.hl-tr:hover td { background-color: #CFC !important; }
|
||||||
<col class="row1" width="60%">
|
<col class="row1" width="60%">
|
||||||
<col class="row2">
|
<col class="row2">
|
||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">{L_CRON_EDIT_HEAD}</th>
|
<th colspan="2">{L_CRON_EDIT_HEAD_EDIT}</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><h4>{L_CRON_ID}</h4></td>
|
<td><h4>{L_CRON_ID}</h4></td>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue