Browse Source

Update Copyright etc.

Updating the copyright and the contributor list.
pull/189/head
Danang Probo Sayekti 10 years ago
parent
commit
a2ee15a05c
4 changed files with 16 additions and 8 deletions
  1. +10
    -6
      COPYRIGHT.txt
  2. +3
    -0
      humans.txt
  3. +1
    -1
      system/htmly.php
  4. +2
    -1
      system/includes/functions.php

+ 10
- 6
COPYRIGHT.txt View File

@ -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>

+ 3
- 0
humans.txt View File

@ -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


+ 1
- 1
system/htmly.php View File

@ -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');


+ 2
- 1
system/includes/functions.php View File

@ -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…
Cancel
Save