diff options
author | Benny Baumann <BenBE@geshi.org> | 2013-07-21 22:08:27 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2013-07-21 22:08:27 +0200 |
commit | d2007817b54591de8e0f89939839eb1bcf730720 (patch) | |
tree | 03443799a2796e641dd5a4e45d7ddb7be049500c /pages/wot | |
parent | ffa741b041735b1dc400ac83ecf65085579cc57c (diff) | |
download | cacert-devel-d2007817b54591de8e0f89939839eb1bcf730720.tar.gz cacert-devel-d2007817b54591de8e0f89939839eb1bcf730720.tar.xz cacert-devel-d2007817b54591de8e0f89939839eb1bcf730720.zip |
bug 1177: Update include references from wot.inc.php to link to notary.inc.php
Diffstat (limited to 'pages/wot')
-rw-r--r-- | pages/wot/15.php | 2 | ||||
-rw-r--r-- | pages/wot/4.php | 2 | ||||
-rw-r--r-- | pages/wot/6.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/pages/wot/15.php b/pages/wot/15.php index 8579588..cca2702 100644 --- a/pages/wot/15.php +++ b/pages/wot/15.php @@ -16,7 +16,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ - include_once($_SESSION['_config']['filepath']."/includes/wot.inc.php"); + require_once($_SESSION['_config']['filepath']."/includes/notary.inc.php"); $userid = intval($_SESSION['profile']['id']); diff --git a/pages/wot/4.php b/pages/wot/4.php index befdfe4..628e6a5 100644 --- a/pages/wot/4.php +++ b/pages/wot/4.php @@ -15,7 +15,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -require_once(dirname(__FILE__).'/../../includes/wot.inc.php'); +require_once(dirname(__FILE__).'/../../includes/notary.inc.php'); ?> <h3><?=_("Trusted Third Parties")?></h3> diff --git a/pages/wot/6.php b/pages/wot/6.php index 28c1875..037eb7e 100644 --- a/pages/wot/6.php +++ b/pages/wot/6.php @@ -40,7 +40,7 @@ $name = $fname." ".$mname." ".$lname." ".$suffix; $_SESSION['_config']['wothash'] = md5($name."-".$dob); - include_once($_SESSION['_config']['filepath']."/includes/wot.inc.php"); + require_once($_SESSION['_config']['filepath']."/includes/notary.inc.php"); AssureHead(_("Assurance Confirmation"),sprintf(_("Please check the following details match against what you witnessed when you met %s in person. You MUST NOT proceed unless you are sure the details are correct. You may be held responsible by the CAcert Arbitrator for any issues with this Assurance."), $fname)); AssureTextLine(_("Name"),$name); |