aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-03-24 20:10:25 -0400
committerThedro Neely <thedroneely@gmail.com>2019-03-24 20:10:25 -0400
commit4d043f4879658fc6abcdd4764c959ad2d645f099 (patch)
treef019a6860a546ae8ef1bcf7060e43c5e983f78ea /bootstrap
parent45a18145947bb708f6e067df019e1491f07e25db (diff)
downloadedwinmattiacci.com-4d043f4879658fc6abcdd4764c959ad2d645f099.tar.gz
edwinmattiacci.com-4d043f4879658fc6abcdd4764c959ad2d645f099.tar.bz2
edwinmattiacci.com-4d043f4879658fc6abcdd4764c959ad2d645f099.zip
bootstrap/comments/backend/classes/secrets: Lock down secrets file
We will start using this file. Add to gitignore
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/comments/backend/classes/secrets.php41
1 files changed, 0 insertions, 41 deletions
diff --git a/bootstrap/comments/backend/classes/secrets.php b/bootstrap/comments/backend/classes/secrets.php
deleted file mode 100644
index 6c704ca..0000000
--- a/bootstrap/comments/backend/classes/secrets.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php namespace HashOver;
-
-// Copyright (C) 2010-2018 Jacob Barkdull
-// This file is part of HashOver.
-//
-// I, Jacob Barkdull, hereby release this work into the public domain.
-// This applies worldwide. If this is not legally possible, I grant any
-// entity the right to use this work for any purpose, without any
-// conditions, unless such conditions are required by law.
-//
-//--------------------
-//
-// IMPORTANT NOTICE:
-//
-// To retain your settings and maintain proper functionality, when
-// downloading or otherwise upgrading to a new version of HashOver it
-// is important that you preserve this file, unless directed otherwise.
-//
-// It is also important to choose UNIQUE values for the encryption key,
-// admin name, and admin password, as not doing so puts HashOver at
-// risk of being hijacked. Allowing someone to delete comments and/or
-// edit existing comments to post spam, impersonate you or your
-// visitors in order to push some sort of agenda/propaganda, to defame
-// you or your visitors, or to imply endorsement of some product(s),
-// service(s), and/or political ideology.
-
-
-class Secrets
-{
- // E-mail for notification of new comments
- public $notificationEmail = 'edwinmattiacci@yahoo.com';
-
- // Unique encryption key (case-sensitive)
- protected $encryptionKey = 'nC6s-@H\ _';
-
- // Login name to gain admin rights (case-sensitive)
- protected $adminName = 'admin';
-
- // Login password to gain admin rights (case-sensitive)
- protected $adminPassword = 'passwd';
-}