
Originally Posted by
swguy
a) The list of defines is in includes/filenames.php.
Thanks, however, now I am confused as none of these following provides an indication of what to put in the middle.
In includes/filenames.php,
Code:
define('FILENAME_ACCOUNT', 'account');
define('FILENAME_PRIVACY', 'privacy');
yet in tpl_site_map_default.php
Code:
<a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">
<a href="' . zen_href_link(FILENAME_PRIVACY) . '">
Surprisingly,
Code:
<a href="' . zen_href_link(FILENAME_PRIVACY,'','NONSSL') . '">
does not occur in tpl_site_map_default.php.

Originally Posted by
swguy
b) When you want SSL. :) In most cases you won't.
"Are you concerned about the content being intercepted" is the question to ask.
For form pages, I would have thought "yes", but for other pages - "no".
Yet, in tpl_site_map_default.php, zen_href_link(FILENAME_CONTACT_US) does not mention either SSL or NONSSL.
Am I understanding correctly that form input data sent via email transmission is relatively insecure, and that invoking SSL via zen_href_link to the form pages will provide an SSL layer for those pages.
Please deconfuse me.