Browse Source

Copyright and license update for 2013.

pull/40/head
Michael Save 11 years ago
parent
commit
7a68fc9525
  1. 2
      LICENSE.md
  2. 2
      inc/anti-bot.php
  3. 2
      inc/cache.php
  4. 2
      inc/config.php
  5. 2
      inc/database.php
  6. 2
      inc/display.php
  7. 2
      inc/events.php
  8. 2
      inc/filters.php
  9. 2
      inc/functions.php
  10. 2
      inc/image.php
  11. 2
      inc/mod.php
  12. 2
      inc/mod/auth.php
  13. 2
      inc/mod/ban.php
  14. 2
      inc/mod/pages.php
  15. 2
      inc/remote.php
  16. 2
      inc/template.php
  17. 2
      mod.php
  18. 2
      post.php
  19. 2
      templates/generic_page.html
  20. 2
      templates/index.html
  21. 2
      templates/page.html
  22. 2
      templates/thread.html

2
LICENSE.md

@ -1,5 +1,5 @@
# License
Copyright (c) 2010-2012 Tinyboard Development Group (tinyboard.org)
Copyright (c) 2010-2013 Tinyboard Development Group (tinyboard.org)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

2
inc/anti-bot.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {

2
inc/cache.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {

2
inc/config.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*
* WARNING: This is a project-wide configuration file and is overwritten when upgrading to a newer
* version of Tinyboard. Please leave this file unchanged, or it will be a lot harder for you to upgrade.

2
inc/database.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {

2
inc/display.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {

2
inc/events.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {

2
inc/filters.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {

2
inc/functions.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {

2
inc/image.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {

2
inc/mod.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
// WARNING: Including this file is DEPRECIATED. It's only here to support older versions and won't exist forever.

2
inc/mod/auth.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {

2
inc/mod/ban.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {

2
inc/mod/pages.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {

2
inc/remote.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {

2
inc/template.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {

2
mod.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
require 'inc/functions.php';

2
post.php

@ -1,7 +1,7 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
require 'inc/functions.php';

2
templates/generic_page.html

@ -61,7 +61,7 @@
{% endfor %} {{ btn.next }}</div>
{{ boardlist.bottom }}
<footer>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2012 Tinyboard Development Group</p>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2013 Tinyboard Development Group</p>
{% for footer in config.footer %}<p class="unimportant" style="text-align:center;">{{ footer }}</p>{% endfor %}
</footer>
<script type="text/javascript">{% raw %}

2
templates/index.html

@ -59,7 +59,7 @@
{% endfor %} {{ btn.next }}</div>
{{ boardlist.bottom }}
<footer>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2012 Tinyboard Development Group</p>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2013 Tinyboard Development Group</p>
{% for footer in config.footer %}<p class="unimportant" style="text-align:center;">{{ footer }}</p>{% endfor %}
</footer>
<script type="text/javascript">{% raw %}

2
templates/page.html

@ -23,7 +23,7 @@
{{ body }}
<hr>
<footer>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2012 Tinyboard Development Group</p>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2013 Tinyboard Development Group</p>
</footer>
</body>
</html>

2
templates/thread.html

@ -60,7 +60,7 @@
{{ boardlist.bottom }}
<footer>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2012 Tinyboard Development Group</p>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2013 Tinyboard Development Group</p>
{% for footer in config.footer %}<p class="unimportant" style="text-align:center;">{{ footer }}</p>{% endfor %}
</footer>
<script type="text/javascript">{% raw %}

Loading…
Cancel
Save