mirror of
https://github.com/danpros/htmly.git
synced 2026-04-22 13:36:22 +05:30
Update Copyright etc.
Updating the copyright and the contributor list.
This commit is contained in:
parent
63f6d5cef3
commit
a2ee15a05c
4 changed files with 16 additions and 8 deletions
|
|
@ -26,14 +26,18 @@ license, including:
|
||||||
|
|
||||||
Markdown - (c) 2003-2006 John Gruber
|
Markdown - (c) 2003-2006 John Gruber
|
||||||
|
|
||||||
\Suin\RSSWriter - (c) Suin <https://github.com/suin>
|
RSSWriter - (c) Suin <https://github.com/suin>
|
||||||
|
|
||||||
Showdown code (c) 2007 John Fraser
|
Showdown code - (c) 2007 John Fraser
|
||||||
|
|
||||||
Pagedown modifications and bugfixes (c) 2009 Dana Robinson
|
Pagedown modifications and bugfixes - (c) 2009 Dana Robinson
|
||||||
|
|
||||||
Pagedown modifications and bugfixes (c) 2009-2013 Stack Exchange Inc.
|
Pagedown modifications and bugfixes - (c) 2009-2013 Stack Exchange Inc.
|
||||||
|
|
||||||
Lightbox2 (c) Lokesh Dhakar <lokeshdhakar.com>
|
Lightbox2 - (c) Lokesh Dhakar <lokeshdhakar.com>
|
||||||
|
|
||||||
jQuery (c) The jQuery Foundation
|
jQuery - (c) The jQuery Foundation
|
||||||
|
|
||||||
|
Hub Updater - (c) Kanti.de <https://github.com/Kanti>
|
||||||
|
|
||||||
|
Password Compat - (c) Anthony Ferrara <https://github.com/ircmaxell>
|
||||||
|
|
@ -25,6 +25,9 @@ Contributor: mlncn
|
||||||
Github: https://github.com/mlncn
|
Github: https://github.com/mlncn
|
||||||
Location: Natick, Massachusetts, USA
|
Location: Natick, Massachusetts, USA
|
||||||
|
|
||||||
|
Contributor: Tea23
|
||||||
|
Github: https://github.com/Tea23
|
||||||
|
|
||||||
/* THANKS */
|
/* THANKS */
|
||||||
Name: Martin Angelov
|
Name: Martin Angelov
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -878,7 +878,7 @@ post('/add/post', function () {
|
||||||
$proper = is_csrf_proper(from($_REQUEST, 'csrf_token'));
|
$proper = is_csrf_proper(from($_REQUEST, 'csrf_token'));
|
||||||
|
|
||||||
$title = from($_REQUEST, 'title');
|
$title = from($_REQUEST, 'title');
|
||||||
$fi = from($_REQUEST, 'fi');
|
$img = from($_REQUEST, 'img');
|
||||||
$vid = from($_REQUEST, 'vid');
|
$vid = from($_REQUEST, 'vid');
|
||||||
$tag = from($_REQUEST, 'tag');
|
$tag = from($_REQUEST, 'tag');
|
||||||
$url = from($_REQUEST, 'url');
|
$url = from($_REQUEST, 'url');
|
||||||
|
|
|
||||||
|
|
@ -596,7 +596,8 @@ function get_count($var, $str)
|
||||||
$tmp = array();
|
$tmp = array();
|
||||||
|
|
||||||
foreach ($posts as $index => $v) {
|
foreach ($posts as $index => $v) {
|
||||||
$url = $v[$str];
|
$arr = explode('_', $v[$str]);
|
||||||
|
$url = $arr[0];
|
||||||
if (strpos($url, "$var") !== false) {
|
if (strpos($url, "$var") !== false) {
|
||||||
$tmp[] = $v;
|
$tmp[] = $v;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue