Skip to content

Commit

Permalink
Merge branch '17.x' into GH-1004-easier-auto-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
pH-7 committed Jun 6, 2022
2 parents 07a3e17 + 3dfcfbd commit 77f1f67
Show file tree
Hide file tree
Showing 766 changed files with 872 additions and 878 deletions.
4 changes: 2 additions & 2 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
####################
# Author: Pierre-Henry Soria <hello@ph7cms.com>
# Author: Pierre-Henry Soria <hello@ph7builder.com>
# Copyright: (c) 2012-2022, Pierre-Henry Soria. All Rights Reserved.
# License: MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
####################
Expand All @@ -17,7 +17,7 @@
RewriteEngine On

## Uncomment the below "#RewriteBase /" (remove "#") if pH7Builder is installed in a folder, and add the folder name after the slash "/"
## Example: If pH7Builder is installed in "/public_html/ph7cms/", then it should be "RewriteBase /ph7cms/", however it may depends of your Apache configuration.
## Example: If pH7Builder is installed in "/public_html/ph7builder/", then it should be "RewriteBase /ph7builder/", however it may depends of your Apache configuration.
## If you need, please ask your hosting company or check the Apache doc: http://httpd.apache.org/docs/current/mod/mod_rewrite.html

# RewriteBase /
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ RUN apt-get install -y && \
RUN apt-get install -y nginx

# Remove the default Nginx configuration file
RUN rm -v /etc/nginx/ph7cms.conf
RUN rm -v /etc/nginx/ph7builder.conf

# Copy a configuration file from the current directory
ADD ph7cms.conf /etc/nginx/
ADD ph7builder.conf /etc/nginx/

# Append "daemon off;" to the beginning of the configuration
RUN echo "daemon off;" >> /etc/nginx/ph7cms.conf
RUN echo "daemon off;" >> /etc/nginx/ph7builder.conf

# Install PHP!
FROM php:${PHP_VERSION}-fpm
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ You get and own all data and files, hosted on your own server! ✌️
- [Troubleshooting](#-troubleshooting)
- [Contributing to the project](#-contributing)
- [License](#%EF%B8%8F-license)
- [Why pH7CMS is Eco-Friendly?](#-ph7cms-the-eco-friendly-cms-%EF%B8%8F)
- [The toolsets I use](#-toolssoftware-used-to-develop-ph7cms)
- [Why pH7Builder is Eco-Friendly?](#-ph7builder-the-eco-friendly-cms-%EF%B8%8F)
- [The toolsets I use](#-toolssoftware-used-to-develop-ph7builder)
- [About Me](#-the-cook)
- [Contact Me](#-contact-suggestion--feedback)
- [Hire Me](#-hire-me-at-your-company)
Expand Down Expand Up @@ -187,7 +187,7 @@ This Free and Open Source **Social Dating Site Builder** wants to be low resourc
* From a command line opened in the project folder, run `composer install` to install pH7Builder's dependencies.
* Composer:
* [Install Composer](https://getcomposer.org/doc/00-intro.md)
* `composer create-project ph7software/ph7cms --prefer-dist ph7cms`
* `composer create-project ph7software/ph7builder --prefer-dist ph7builder`
* Sourceforge:
* Directly download the latest stable version from [Sourceforge](https://sourceforge.net/projects/ph7socialdating/).
* Softaculous:
Expand All @@ -198,7 +198,7 @@ This Free and Open Source **Social Dating Site Builder** wants to be low resourc

In order to get pH7Builder working on nginx server, you need to add some custom nginx configuration.

Create `/etc/nginx/ph7cms.conf` and add the following:
Create `/etc/nginx/ph7builder.conf` and add the following:

```nginx
location / {
Expand All @@ -209,7 +209,7 @@ location / {

*Please note that the above code is the strict minimum and obviously you can add more rules by comparing with the [main Apache .htaccess file](https://github.com/pH7Software/pH7-Social-Dating-CMS/blob/master/.htaccess).*

Finally, in your nginx server configuration, you will have to include `ph7cms.conf` file to complete the configuration like below:
Finally, in your nginx server configuration, you will have to include `ph7builder.conf` file to complete the configuration like below:

In file, e.g., *`/etc/nginx/sites-enabled/yoursite.conf`* for Ubuntu and other OS based on Debian or `/etc/nginx/conf.d/yoursite.conf` for CentOS and other OS based on Red Hat.

Expand All @@ -219,15 +219,15 @@ server {
listen 80;
server_name www.yoursite.com;
root /var/www/ph7cms_public_root;
root /var/www/ph7builder_public_root;
index index.php;
client_max_body_size 50M;
error_log /var/log/nginx/yoursite.error.log;
access_log /var/log/nginx/yoursite.access.log;
# Include ph7cms.conf. You can also directly add the "location" rule instead of including the conf file
include /etc/nginx/ph7cms.conf;
# Include ph7builder.conf. You can also directly add the "location" rule instead of including the conf file
include /etc/nginx/ph7builder.conf;
}
```

Expand Down Expand Up @@ -342,7 +342,7 @@ Finally, **please consider using green Web hosting** (which use Green Power supp

## 🖋 Contact (Suggestion / Feedback)

Feel free to send me an email at *hello {AT} ph7cms {D0T} com*
Feel free to send me an email at *hello {AT} ph7builder {D0T} com*


## ⚖️ License
Expand Down
2 changes: 1 addition & 1 deletion WebsiteChecker.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2018-2022, Pierre-Henry Soria. All Rights Reserved.
* @license See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @link https://ph7builder.com
Expand Down
2 changes: 1 addition & 1 deletion _install/constants.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2012-2022, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
*/
Expand Down
2 changes: 1 addition & 1 deletion _install/controllers/InstallController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2012-2022, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / Install / Controller
Expand Down
2 changes: 1 addition & 1 deletion _install/controllers/MainController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2012-2022, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / Install / Controller
Expand Down
10 changes: 5 additions & 5 deletions _install/data/configs/config.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
;
; Title: Config file of pH7 Dating Social Community CMS
;
; Author: Pierre-Henry Soria <hello@ph7cms.com>
; Copyright: (c) 2011-2021, Pierre-Henry Soria. All Rights Reserved.
; Author: Pierre-Henry Soria <hello@ph7builder.com>
; Copyright: (c) 2011-2022, Pierre-Henry Soria. All Rights Reserved.
; License: MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
; Link: https://ph7cms.com
; Link: https://ph7builder.com
;
;

Expand All @@ -29,7 +29,7 @@ company = "pH7Builder (Pierre-Henry Soria)"
copyright = "Pierre-Henry Soria, All Rights Reserved."
license = "MIT"
website = "https://ph7builder.com"
email = "hello@ph7cms.com"
email = "hello@ph7builder.com"


[database]
Expand Down Expand Up @@ -120,7 +120,7 @@ enable.static.minify_java_compiler = 0
private_key = "%private_key%"

; Domain(s) that can use the API
allow_domains[] = "ph7cms.com"
allow_domains[] = "ph7builder.com"


[storage]
Expand Down
2 changes: 1 addition & 1 deletion _install/data/configs/constants.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2012-2022, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @link https://ph7builder.com
Expand Down
2 changes: 1 addition & 1 deletion _install/data/sql/MySQL/pH7_Core.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
--
-- Title: SQL Core (base) Install File
--
-- Author: Pierre-Henry Soria <hello@ph7cms.com>
-- Author: Pierre-Henry Soria <hello@ph7builder.com>
-- Copyright: (c) 2012-2022, Pierre-Henry Soria. All Rights Reserved.
-- License: MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
-- Package: PH7 / Install / Data / Sql / MySQL
Expand Down
4 changes: 2 additions & 2 deletions _install/data/sql/PostgreSQL/pH7_Core.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
--
-- Title: SQL Core (base) Install File
--
-- Author: Pierre-Henry Soria <hello@ph7cms.com>
-- Author: Pierre-Henry Soria <hello@ph7builder.com>
-- Copyright: (c) 2017-2021, Pierre-Henry Soria. All Rights Reserved.
-- License: MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
-- Package: PH7 / Install / Data / Sql / PostgreSQL
Expand Down Expand Up @@ -1028,7 +1028,7 @@ CREATE TABLE IF NOT EXISTS ph7_meta_main (
) ;

INSERT INTO ph7_meta_main (langId, pageTitle, metaDescription, metaKeywords, headline, slogan, promoText, metaRobots, metaAuthor, metaCopyright, metaRating, metaDistribution, metaCategory) VALUES
('en_US', 'Home', 'The Best Online Social Dating Service to meet people and keep in touch with your friends', 'meet people, community, single, friends, meet singles, women, men, dating site, dating service, dating website, online dating website', 'Be on the right place!', 'The Place to meet lovely people', 'You''re on the best place for meeting new people nearby! Chat, Flirt, Socialize and have Fun!<br />Create any Social Dating Web Apps or Websites like this one with the #1 <a href="https://ph7cms.com">Dating Web App Builder</a>. It''s Professional, Modern, Open Source, and gives you the Best Way to launch a new Social/Dating Business!', 'index, follow, all', 'Pierre-Henry Soria', 'Copyright Pierre-Henry Soria. All Rights Reserved.', 'general', 'global', 'dating');
('en_US', 'Home', 'The Best Online Social Dating Service to meet people and keep in touch with your friends', 'meet people, community, single, friends, meet singles, women, men, dating site, dating service, dating website, online dating website', 'Be on the right place!', 'The Place to meet lovely people', 'You''re on the best place for meeting new people nearby! Chat, Flirt, Socialize and have Fun!<br />Create any Social Dating Web Apps or Websites like this one with the #1 <a href="https://ph7builder.com">Dating Web App Builder</a>. It''s Professional, Modern, Open Source, and gives you the Best Way to launch a new Social/Dating Business!', 'index, follow, all', 'Pierre-Henry Soria', 'Copyright Pierre-Henry Soria. All Rights Reserved.', 'general', 'global', 'dating');


CREATE SEQUENCE ph7_sys_mods_enabled_seq;
Expand Down
2 changes: 1 addition & 1 deletion _install/index.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2012-2022, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @link https://ph7builder.com
Expand Down
2 changes: 1 addition & 1 deletion _install/library/Controllable.class.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2012-2019, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / Install / Library
Expand Down
6 changes: 3 additions & 3 deletions _install/library/Controller.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
/**
* @title Controller Core Class
*
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2012-2021, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @link http://ph7cms.com
* @link http://ph7builder.com
* @package PH7 / Install / Library
*/

Expand All @@ -26,7 +26,7 @@ abstract class Controller implements Controllable
const DEFAULT_SITE_NAME = 'My Dating WebApp';
const DEFAULT_ADMIN_USERNAME = 'administrator';
const SOFTWARE_PREFIX_COOKIE_NAME = 'pH7';
const SOFTWARE_WEBSITE = 'https://ph7cms.com';
const SOFTWARE_WEBSITE = 'https://ph7builder.com';
const SOFTWARE_REQUIREMENTS_URL = 'https://ph7builder.com/doc/en/requirements';
const PAYPAL_DONATE_URL = 'https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=X457W3L7DAPC6';
const PATREON_URL = 'https://www.patreon.com/bePatron?u=3534366';
Expand Down
2 changes: 1 addition & 1 deletion _install/library/DbDefaultConfig.class.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2018-2020, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / Install / Library
Expand Down
2 changes: 1 addition & 1 deletion _install/library/SqlQuery.class.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2019-2022, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / Install / Library
Expand Down
2 changes: 1 addition & 1 deletion _install/requirements.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @package Install
* @file requirements
* @author Pierre-Henry Soria
* @email <hello@ph7cms.com>
* @email <hello@ph7builder.com>
* @copyright (c) 2011-2021, Pierre-Henry Soria. All Rights Reserved.
* @license MIT (https://opensource.org/licenses/MIT)
* @language (PHP) and (HTML5 + CSS)
Expand Down
4 changes: 2 additions & 2 deletions _protected/app/Bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2012-2022, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @link https://ph7cms.com
* @link https://ph7builder.com
* @package PH7 / App / Core
*/

Expand Down
2 changes: 1 addition & 1 deletion _protected/app/configs/ad_sizes.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2014-2020, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Config
Expand Down
4 changes: 2 additions & 2 deletions _protected/app/configs/constants.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @link https://ph7cms.com
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @link https://ph7builder.com
* @copyright (c) 2012-2022, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Config
Expand Down
4 changes: 2 additions & 2 deletions _protected/app/configs/emoticon.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
/**
* @title Emoticon File
*
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @link https://ph7cms.com
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @link https://ph7builder.com
* @copyright (c) 2012-2020, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Config
Expand Down
4 changes: 2 additions & 2 deletions _protected/app/configs/environment/all.env.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
* @title All Environment File
* @desc File for all environments.
*
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @link http://ph7cms.com
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @link http://ph7builder.com
* @copyright (c) 2012-2019, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Config / Environment
Expand Down
4 changes: 2 additions & 2 deletions _protected/app/configs/environment/development.env.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
/**
* @title Development Environment File
*
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @link http://ph7cms.com
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @link http://ph7builder.com
* @copyright (c) 2012-2021, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Config / Environment
Expand Down
4 changes: 2 additions & 2 deletions _protected/app/configs/environment/production.env.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
/**
* @title Production Environment File
*
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @link http://ph7cms.com
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @link http://ph7builder.com
* @copyright (c) 2012-2021, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Config / Environment
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/includes/classes/Authenticable.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2019, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Include / Class
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/includes/classes/BulkAction.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2021-2022, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Include / Class
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/includes/classes/Controller.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2012-2019, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Include / Class
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/includes/classes/ControllerException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2012-2019, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Include / Class
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/includes/classes/Core.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2012-2019, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Include / Class
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/includes/classes/Cron.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2012-2019, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Include / Class
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/includes/classes/DbTableName.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2018-2021, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Include / Class
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @author Pierre-Henry Soria <hello@ph7cms.com>
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2019, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Include / Class
Expand Down
Loading

0 comments on commit 77f1f67

Please sign in to comment.