Browse Source

removed email address from PHP files

master
Piotr Dergun 6 years ago
parent
commit
97993ee1c2
19 changed files with 19 additions and 19 deletions
  1. +1
    -1
      inc/askModel.class.php
  2. +1
    -1
      inc/bbcode.php
  3. +1
    -1
      inc/constants.php
  4. +1
    -1
      inc/controller.class.php
  5. +1
    -1
      inc/controllers/AdminController.class.php
  6. +1
    -1
      inc/controllers/MainController.class.php
  7. +1
    -1
      inc/database_connection.php
  8. +1
    -1
      inc/model.class.php
  9. +1
    -1
      inc/models/BansModel.class.php
  10. +1
    -1
      inc/models/ConfigModel.class.php
  11. +1
    -1
      inc/models/ForumsModel.class.php
  12. +1
    -1
      inc/models/NavigationModel.class.php
  13. +1
    -1
      inc/models/PostsModel.class.php
  14. +1
    -1
      inc/models/SessionModel.class.php
  15. +1
    -1
      inc/models/StatisticsModel.class.php
  16. +1
    -1
      inc/models/UsersModel.class.php
  17. +1
    -1
      inc/view.class.php
  18. +1
    -1
      inc/views/MainView.class.php
  19. +1
    -1
      index.php

+ 1
- 1
inc/askModel.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/askModel.class.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/bbcode.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/bbcode.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/constants.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/constants.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/controller.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/controller.class.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/controllers/AdminController.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/controllers/AdminController.class.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/controllers/MainController.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/controllers/MainController.class.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/database_connection.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/database_connection.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/model.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/model.class.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/models/BansModel.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/models/BansModel.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/models/ConfigModel.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/models/ConfigModel.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/models/ForumsModel.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/models/ForumsModel.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/models/NavigationModel.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/models/NavigationModel.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/models/PostsModel.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/models/PostsModel.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/models/SessionModel.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/models/SessionModel.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/models/StatisticsModel.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/models/StatisticsModel.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/models/UsersModel.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/models/UsersModel.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/view.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/view.class.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
inc/views/MainView.class.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file inc/views/MainView.class.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

+ 1
- 1
index.php View File

@ -2,7 +2,7 @@
/**
* @package uForum2
* @file index.php
* @copyright 2007-2015 (c) PioDer <piotrek@pioder.pl>
* @copyright 2007-2015 (c) PioDer
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/

Loading…
Cancel
Save