diff --git a/Archiv/AW Was tun bei Statusõnderung.msg b/Archiv/AW Was tun bei Statusõnderung.msg index a8197d1..a1fedfd 100755 Binary files a/Archiv/AW Was tun bei Statusõnderung.msg and b/Archiv/AW Was tun bei Statusõnderung.msg differ diff --git a/Archiv/Prõmienkatalog.msg b/Archiv/Prõmienkatalog.msg index d2c9428..41ce2c9 100755 Binary files a/Archiv/Prõmienkatalog.msg and b/Archiv/Prõmienkatalog.msg differ diff --git a/Archiv/ideenmanagement.sql b/Archiv/ideenmanagement.sql index 07afe81..b2acc78 100755 --- a/Archiv/ideenmanagement.sql +++ b/Archiv/ideenmanagement.sql @@ -1,6 +1,6 @@ -- phpMyAdmin SQL Dump -- version 3.3.3 --- https://www.phpmyadmin.net +-- http://www.phpmyadmin.net -- -- Host: localhost -- Erstellungszeit: 11. Mai 2011 um 14:23 diff --git a/adLDAP/CHANGELOG.txt b/adLDAP/CHANGELOG.txt index 94b2f0a..0e4057c 100755 --- a/adLDAP/CHANGELOG.txt +++ b/adLDAP/CHANGELOG.txt @@ -2,7 +2,7 @@ adLDAP - PHP LDAP CLASS FOR MANIPULATING ACTIVE DIRECTORY Written by Scott Barnett, Richard Hyland email: scott@wiggumworld.com, adldap@richardhyland.com -https://adldap.sourceforge.net/ +http://adldap.sourceforge.net/ CHANGELOG diff --git a/adLDAP/README.txt b/adLDAP/README.txt index 2a4a9f3..eb49297 100755 --- a/adLDAP/README.txt +++ b/adLDAP/README.txt @@ -3,7 +3,7 @@ Version 3.3.2 Written by Scott Barnett, Richard Hyland email: scott@wiggumworld.com, adldap@richardhyland.com -https://adldap.sourceforge.net/ +http://adldap.sourceforge.net/ We'd appreciate any improvements or additions to be submitted back to benefit the entire community :) @@ -15,11 +15,11 @@ called "includes/". If you want to use somewhere else, just edit the include directives in the scripts. The examples should be pretty self explanatory. If you require more -information, please visit https://adldap.sourceforge.net/ +information, please visit http://adldap.sourceforge.net/ ------------------- -For full API documentation see https://adldap.sourceforge.net/wiki/doku.php?id=api +For full API documentation see http://adldap.sourceforge.net/wiki/doku.php?id=api 1. Copy adLDAP.php to your server 2. Edit the configuring variables in the class itself if you so wish to diff --git a/adLDAP/URLs.txt b/adLDAP/URLs.txt index 4e7f9ac..5e26a57 100755 --- a/adLDAP/URLs.txt +++ b/adLDAP/URLs.txt @@ -1,2 +1,2 @@ -https://www.administrator.de/index.php?content=31891 -https://www.php.de/php-einsteiger/50623-login-mittels-active-directory-ldap.html \ No newline at end of file +http://www.administrator.de/index.php?content=31891 +http://www.php.de/php-einsteiger/50623-login-mittels-active-directory-ldap.html \ No newline at end of file diff --git a/adLDAP/adLDAP.php b/adLDAP/adLDAP.php index 8163c6a..e3d4640 100755 --- a/adLDAP/adLDAP.php +++ b/adLDAP/adLDAP.php @@ -7,7 +7,7 @@ * * Written by Scott Barnett, Richard Hyland * email: scott@wiggumworld.com, adldap@richardhyland.com - * https://adldap.sourceforge.net/ + * http://adldap.sourceforge.net/ * * Copyright (c) 2006-2010 Scott Barnett, Richard Hyland * @@ -28,10 +28,10 @@ * @package adLDAP * @author Scott Barnett, Richard Hyland * @copyright (c) 2006-2010 Scott Barnett, Richard Hyland - * @license https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1 + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1 * @revision $Revision: 91 $ * @version 3.3.2 - * @link https://adldap.sourceforge.net/ + * @link http://adldap.sourceforge.net/ */ /** @@ -57,7 +57,7 @@ define ('ADLDAP_CONTAINER', 'CN'); * much information on other users as you could as a domain admin. * * Before asking questions, please read the Documentation at -* https://adldap.sourceforge.net/wiki/doku.php?id=api +* http://adldap.sourceforge.net/wiki/doku.php?id=api */ class adLDAP { /** @@ -98,7 +98,7 @@ class adLDAP { protected $_ad_password=NULL; /** - * AD does not return the primary group. https://support.microsoft.com/?kbid=321360 + * AD does not return the primary group. http://support.microsoft.com/?kbid=321360 * This tweak will resolve the real primary group. * Setting to false will fudge "Domain Users" and is much faster. Keep in mind though that if * someone's primary group is NOT domain users, this is obviously going to mess up the results @@ -109,7 +109,7 @@ class adLDAP { /** * Use SSL (LDAPS), your server needs to be setup, please see - * https://adldap.sourceforge.net/wiki/doku.php?id=ldap_over_ssl + * http://adldap.sourceforge.net/wiki/doku.php?id=ldap_over_ssl * * @var bool */ @@ -340,7 +340,7 @@ class adLDAP { } if ($this->ldap_supported() === false) { - throw new adLDAPException('No LDAP support for PHP. See: https://www.php.net/ldap'); + throw new adLDAPException('No LDAP support for PHP. See: http://www.php.net/ldap'); } return $this->connect(); @@ -1030,13 +1030,13 @@ class adLDAP { * * @param string $username The username to query * @param book $isGUID Is the username passed a GUID or a samAccountName - * @requires bcmath https://www.php.net/manual/en/book.bc.php + * @requires bcmath http://www.php.net/manual/en/book.bc.php * @return array */ public function user_password_expiry($username,$isGUID=false) { if ($username===NULL){ return ("Missing compulsory field [username]"); } if (!$this->_bind){ return (false); } - if (!function_exists('bcmod')) { return ("Missing function support [bcmod] https://www.php.net/manual/en/book.bc.php"); }; + if (!function_exists('bcmod')) { return ("Missing function support [bcmod] http://www.php.net/manual/en/book.bc.php"); }; $userinfo = $this->user_info($username, array("pwdlastset", "useraccountcontrol"), $isGUID); $pwdlastset = $userinfo[0]['pwdlastset'][0]; @@ -1065,7 +1065,7 @@ class adLDAP { $maxpwdage = $info[0]['maxpwdage'][0]; - // See MSDN: https://msdn.microsoft.com/en-us/library/ms974598.aspx + // See MSDN: http://msdn.microsoft.com/en-us/library/ms974598.aspx // // pwdLastSet contains the number of 100 nanosecond intervals since January 1, 1601 (UTC), // stored in a 64 bit integer. @@ -1467,7 +1467,7 @@ class adLDAP { /** * Returns a folder listing for a specific OU - * See https://adldap.sourceforge.net/wiki/doku.php?id=api_folder_functions + * See http://adldap.sourceforge.net/wiki/doku.php?id=api_folder_functions * * @param array $folder_name An array to the OU you wish to list. * If set to NULL will list the root, strongly recommended to set @@ -1681,7 +1681,7 @@ class adLDAP { /** * Add an X400 address to Exchange - * See https://tools.ietf.org/html/rfc1685 for more information. + * See http://tools.ietf.org/html/rfc1685 for more information. * An X400 Address looks similar to this X400:c=US;a= ;p=Domain;o=Organization;s=Doe;g=John; * * @param string $username The username of the user to add the X400 to to @@ -2090,7 +2090,7 @@ class adLDAP { /** * Coping with AD not returning the primary group - * https://support.microsoft.com/?kbid=321360 + * http://support.microsoft.com/?kbid=321360 * * For some reason it's not possible to search on primarygrouptoken=XXX * If someone can show otherwise, I'd like to know about it :) @@ -2121,7 +2121,7 @@ class adLDAP { /** * Coping with AD not returning the primary group - * https://support.microsoft.com/?kbid=321360 + * http://support.microsoft.com/?kbid=321360 * * This is a re-write based on code submitted by Bruce which prevents the * need to search each security group to find the true primary group diff --git a/adLDAP/adLDAP_hsnet.php b/adLDAP/adLDAP_hsnet.php index 95516b5..99cd475 100755 --- a/adLDAP/adLDAP_hsnet.php +++ b/adLDAP/adLDAP_hsnet.php @@ -7,7 +7,7 @@ * * Written by Scott Barnett, Richard Hyland * email: scott@wiggumworld.com, adldap@richardhyland.com - * https://adldap.sourceforge.net/ + * http://adldap.sourceforge.net/ * * Copyright (c) 2006-2010 Scott Barnett, Richard Hyland * @@ -28,10 +28,10 @@ * @package adLDAP * @author Scott Barnett, Richard Hyland * @copyright (c) 2006-2010 Scott Barnett, Richard Hyland - * @license https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1 + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1 * @revision $Revision: 91 $ * @version 3.3.2 - * @link https://adldap.sourceforge.net/ + * @link http://adldap.sourceforge.net/ */ /** @@ -57,7 +57,7 @@ define ('ADLDAP_CONTAINER', 'CN'); * much information on other users as you could as a domain admin. * * Before asking questions, please read the Documentation at -* https://adldap.sourceforge.net/wiki/doku.php?id=api +* http://adldap.sourceforge.net/wiki/doku.php?id=api */ class adLDAP { /** @@ -101,7 +101,7 @@ class adLDAP { protected $_ad_password="ldHS332"; /** - * AD does not return the primary group. https://support.microsoft.com/?kbid=321360 + * AD does not return the primary group. http://support.microsoft.com/?kbid=321360 * This tweak will resolve the real primary group. * Setting to false will fudge "Domain Users" and is much faster. Keep in mind though that if * someone's primary group is NOT domain users, this is obviously going to mess up the results @@ -112,7 +112,7 @@ class adLDAP { /** * Use SSL (LDAPS), your server needs to be setup, please see - * https://adldap.sourceforge.net/wiki/doku.php?id=ldap_over_ssl + * http://adldap.sourceforge.net/wiki/doku.php?id=ldap_over_ssl * * @var bool */ @@ -343,7 +343,7 @@ class adLDAP { } if ($this->ldap_supported() === false) { - throw new adLDAPException('No LDAP support for PHP. See: https://www.php.net/ldap'); + throw new adLDAPException('No LDAP support for PHP. See: http://www.php.net/ldap'); } return $this->connect(); @@ -1033,13 +1033,13 @@ class adLDAP { * * @param string $username The username to query * @param book $isGUID Is the username passed a GUID or a samAccountName - * @requires bcmath https://www.php.net/manual/en/book.bc.php + * @requires bcmath http://www.php.net/manual/en/book.bc.php * @return array */ public function user_password_expiry($username,$isGUID=false) { if ($username===NULL){ return ("Missing compulsory field [username]"); } if (!$this->_bind){ return (false); } - if (!function_exists('bcmod')) { return ("Missing function support [bcmod] https://www.php.net/manual/en/book.bc.php"); }; + if (!function_exists('bcmod')) { return ("Missing function support [bcmod] http://www.php.net/manual/en/book.bc.php"); }; $userinfo = $this->user_info($username, array("pwdlastset", "useraccountcontrol"), $isGUID); $pwdlastset = $userinfo[0]['pwdlastset'][0]; @@ -1068,7 +1068,7 @@ class adLDAP { $maxpwdage = $info[0]['maxpwdage'][0]; - // See MSDN: https://msdn.microsoft.com/en-us/library/ms974598.aspx + // See MSDN: http://msdn.microsoft.com/en-us/library/ms974598.aspx // // pwdLastSet contains the number of 100 nanosecond intervals since January 1, 1601 (UTC), // stored in a 64 bit integer. @@ -1471,7 +1471,7 @@ class adLDAP { /** * Returns a folder listing for a specific OU - * See https://adldap.sourceforge.net/wiki/doku.php?id=api_folder_functions + * See http://adldap.sourceforge.net/wiki/doku.php?id=api_folder_functions * * @param array $folder_name An array to the OU you wish to list. * If set to NULL will list the root, strongly recommended to set @@ -1685,7 +1685,7 @@ class adLDAP { /** * Add an X400 address to Exchange - * See https://tools.ietf.org/html/rfc1685 for more information. + * See http://tools.ietf.org/html/rfc1685 for more information. * An X400 Address looks similar to this X400:c=US;a= ;p=Domain;o=Organization;s=Doe;g=John; * * @param string $username The username of the user to add the X400 to to @@ -2094,7 +2094,7 @@ class adLDAP { /** * Coping with AD not returning the primary group - * https://support.microsoft.com/?kbid=321360 + * http://support.microsoft.com/?kbid=321360 * * For some reason it's not possible to search on primarygrouptoken=XXX * If someone can show otherwise, I'd like to know about it :) @@ -2125,7 +2125,7 @@ class adLDAP { /** * Coping with AD not returning the primary group - * https://support.microsoft.com/?kbid=321360 + * http://support.microsoft.com/?kbid=321360 * * This is a re-write based on code submitted by Bruce which prevents the * need to search each security group to find the true primary group diff --git a/adLDAP/adLDAP_studnet.php b/adLDAP/adLDAP_studnet.php index 5f002ca..99ce94a 100755 --- a/adLDAP/adLDAP_studnet.php +++ b/adLDAP/adLDAP_studnet.php @@ -7,7 +7,7 @@ * * Written by Scott Barnett, Richard Hyland * email: scott@wiggumworld.com, adldap@richardhyland.com - * https://adldap.sourceforge.net/ + * http://adldap.sourceforge.net/ * * Copyright (c) 2006-2010 Scott Barnett, Richard Hyland * @@ -28,10 +28,10 @@ * @package adLDAP * @author Scott Barnett, Richard Hyland * @copyright (c) 2006-2010 Scott Barnett, Richard Hyland - * @license https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1 + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1 * @revision $Revision: 91 $ * @version 3.3.2 - * @link https://adldap.sourceforge.net/ + * @link http://adldap.sourceforge.net/ */ /** @@ -57,7 +57,7 @@ define ('ADLDAP_CONTAINER', 'CN'); * much information on other users as you could as a domain admin. * * Before asking questions, please read the Documentation at -* https://adldap.sourceforge.net/wiki/doku.php?id=api +* http://adldap.sourceforge.net/wiki/doku.php?id=api */ class adLDAP { /** @@ -101,7 +101,7 @@ class adLDAP { protected $_ad_password="ldHS332"; /** - * AD does not return the primary group. https://support.microsoft.com/?kbid=321360 + * AD does not return the primary group. http://support.microsoft.com/?kbid=321360 * This tweak will resolve the real primary group. * Setting to false will fudge "Domain Users" and is much faster. Keep in mind though that if * someone's primary group is NOT domain users, this is obviously going to mess up the results @@ -112,7 +112,7 @@ class adLDAP { /** * Use SSL (LDAPS), your server needs to be setup, please see - * https://adldap.sourceforge.net/wiki/doku.php?id=ldap_over_ssl + * http://adldap.sourceforge.net/wiki/doku.php?id=ldap_over_ssl * * @var bool */ @@ -343,7 +343,7 @@ class adLDAP { } if ($this->ldap_supported() === false) { - throw new adLDAPException('No LDAP support for PHP. See: https://www.php.net/ldap'); + throw new adLDAPException('No LDAP support for PHP. See: http://www.php.net/ldap'); } return $this->connect(); @@ -1033,13 +1033,13 @@ class adLDAP { * * @param string $username The username to query * @param book $isGUID Is the username passed a GUID or a samAccountName - * @requires bcmath https://www.php.net/manual/en/book.bc.php + * @requires bcmath http://www.php.net/manual/en/book.bc.php * @return array */ public function user_password_expiry($username,$isGUID=false) { if ($username===NULL){ return ("Missing compulsory field [username]"); } if (!$this->_bind){ return (false); } - if (!function_exists('bcmod')) { return ("Missing function support [bcmod] https://www.php.net/manual/en/book.bc.php"); }; + if (!function_exists('bcmod')) { return ("Missing function support [bcmod] http://www.php.net/manual/en/book.bc.php"); }; $userinfo = $this->user_info($username, array("pwdlastset", "useraccountcontrol"), $isGUID); $pwdlastset = $userinfo[0]['pwdlastset'][0]; @@ -1068,7 +1068,7 @@ class adLDAP { $maxpwdage = $info[0]['maxpwdage'][0]; - // See MSDN: https://msdn.microsoft.com/en-us/library/ms974598.aspx + // See MSDN: http://msdn.microsoft.com/en-us/library/ms974598.aspx // // pwdLastSet contains the number of 100 nanosecond intervals since January 1, 1601 (UTC), // stored in a 64 bit integer. @@ -1470,7 +1470,7 @@ class adLDAP { /** * Returns a folder listing for a specific OU - * See https://adldap.sourceforge.net/wiki/doku.php?id=api_folder_functions + * See http://adldap.sourceforge.net/wiki/doku.php?id=api_folder_functions * * @param array $folder_name An array to the OU you wish to list. * If set to NULL will list the root, strongly recommended to set @@ -1684,7 +1684,7 @@ class adLDAP { /** * Add an X400 address to Exchange - * See https://tools.ietf.org/html/rfc1685 for more information. + * See http://tools.ietf.org/html/rfc1685 for more information. * An X400 Address looks similar to this X400:c=US;a= ;p=Domain;o=Organization;s=Doe;g=John; * * @param string $username The username of the user to add the X400 to to @@ -2093,7 +2093,7 @@ class adLDAP { /** * Coping with AD not returning the primary group - * https://support.microsoft.com/?kbid=321360 + * http://support.microsoft.com/?kbid=321360 * * For some reason it's not possible to search on primarygrouptoken=XXX * If someone can show otherwise, I'd like to know about it :) @@ -2124,7 +2124,7 @@ class adLDAP { /** * Coping with AD not returning the primary group - * https://support.microsoft.com/?kbid=321360 + * http://support.microsoft.com/?kbid=321360 * * This is a re-write based on code submitted by Bruce which prevents the * need to search each security group to find the true primary group diff --git a/adLDAP/examples/authenticate.php b/adLDAP/examples/authenticate.php index 41b8867..ce66d32 100755 --- a/adLDAP/examples/authenticate.php +++ b/adLDAP/examples/authenticate.php @@ -33,7 +33,7 @@ if ($_POST["oldform"]){ //prevent null bind //establish your session and redirect session_start(); $_SESSION["username"]=$username; - $redir="Location: https://".$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF'])."/menu.htm"; + $redir="Location: http://".$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF'])."/menu.htm"; header($redir); exit; } diff --git a/dyncalendar/browserSniffer.js b/dyncalendar/browserSniffer.js index 3ccf4a9..fb76375 100755 --- a/dyncalendar/browserSniffer.js +++ b/dyncalendar/browserSniffer.js @@ -37,8 +37,8 @@ // is_dec, is_sinix, is_freebsd, is_bsd // is_vms // -// See https://www.it97.de/JavaScript/JS_tutorial/bstat/navobj.html and -// https://www.it97.de/JavaScript/JS_tutorial/bstat/Browseraol.html +// See http://www.it97.de/JavaScript/JS_tutorial/bstat/navobj.html and +// http://www.it97.de/JavaScript/JS_tutorial/bstat/Browseraol.html // for detailed lists of userAgent strings. // // Note: you don't want your Nav4 or IE4 code to "turn off" or diff --git a/dyncalendar/dynCalendar.js b/dyncalendar/dynCalendar.js index 6be1e70..4474727 100755 --- a/dyncalendar/dynCalendar.js +++ b/dyncalendar/dynCalendar.js @@ -5,7 +5,7 @@ * | that the code is free to use for non-commercial purposes. For commercial | * | purposes of any kind there is a small license fee to pay. You can read more | * | at: | - * | https://www.phpguru.org/static/license.html | + * | http://www.phpguru.org/static/license.html | * o------------------------------------------------------------------------------o * * © Copyright 2008 Richard Heyes diff --git a/lib/smarty/COPYING.lib b/lib/smarty/COPYING.lib index 153d416..02bbb60 100755 --- a/lib/smarty/COPYING.lib +++ b/lib/smarty/COPYING.lib @@ -1,7 +1,7 @@ GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. diff --git a/lib/smarty/ChangeLog b/lib/smarty/ChangeLog index ccc3888..2e19a7c 100755 --- a/lib/smarty/ChangeLog +++ b/lib/smarty/ChangeLog @@ -580,7 +580,7 @@ * libs/Smarty_Compiler.class.php: Modified _(push|pop)_cacheable_state() to embedd alternate syntax. See this - bug report: https://www.phpinsider.com/smarty-forum/viewtopic.php?t=10502 + bug report: http://www.phpinsider.com/smarty-forum/viewtopic.php?t=10502 2007-02-26 Peter 'Mash' Morgan @@ -717,7 +717,7 @@ This avoids unlink() unless rename() fails or a Windows system is detected - see: https://www.phpinsider.com/smarty-forum/viewtopic.php?t=6956 + see: http://www.phpinsider.com/smarty-forum/viewtopic.php?t=6956 Thanks to c960657 from the forums. @@ -728,7 +728,7 @@ update debug.tpl to xhtml 1.1 compliance, fix javascript escaping in debug output and apply a Smarty based color scheme - see: https://www.phpinsider.com/smarty-forum/viewtopic.php?t=7178 + see: http://www.phpinsider.com/smarty-forum/viewtopic.php?t=7178 thanks to cybot from the forums! @@ -736,7 +736,7 @@ libs/plugins/modifier.debug_print_var.php: enhance reporting precision of debug_print_var modifier - see: https://www.phpinsider.com/smarty-forum/viewtopic.php?t=9281 + see: http://www.phpinsider.com/smarty-forum/viewtopic.php?t=9281 thanks to cybot from the forums @@ -1682,7 +1682,7 @@ "Alternative syntax" used for example in compiled {if}..{else}..{/if} blocks. - (see: https://php.net/manual/en/control-structures.alternative-syntax.php + (see: http://php.net/manual/en/control-structures.alternative-syntax.php on "Alternative syntax") thanks to kihara from the forum. @@ -1701,7 +1701,7 @@ * libs/plugins/function.popup.php: added "closeclick" from - https://www.bosrup.com/web/overlib/?Command_Reference + http://www.bosrup.com/web/overlib/?Command_Reference 2005-11-23 boots diff --git a/lib/smarty/FAQ b/lib/smarty/FAQ index 48f5515..1860678 100755 --- a/lib/smarty/FAQ +++ b/lib/smarty/FAQ @@ -6,7 +6,7 @@ GENERAL Q: What is Smarty? Q: What's the difference between Smarty and other template engines? Q: What do you mean "Compiled PHP Scripts" ? -Q: Why can't I just use PHPA (https://php-accelerator.co.uk) or Zend Cache? +Q: Why can't I just use PHPA (http://php-accelerator.co.uk) or Zend Cache? Q: Why does smarty have a built in cache? Wouldn't it be better to handle this in a separate class? Q: Is Smarty faster than ? @@ -78,7 +78,7 @@ A: Smarty reads the template files and creates PHP scripts from them. Once know of their existance. (NOTE: you can turn off this compile checking step in Smarty for increased performance.) -Q: Why can't I just use PHPA (https://php-accelerator.co.uk) or Zend Cache? +Q: Why can't I just use PHPA (http://php-accelerator.co.uk) or Zend Cache? A: You certainly can, and we highly recommend it! What PHPA does is caches compiled bytecode of your PHP scripts in shared memory or in a file. This speeds up server response and saves the compilation step. Smarty creates PHP @@ -134,14 +134,14 @@ A: We have a few mailing lists. "general" for you to share your ideas or ask smarty-cvs-subscribe@lists.php.net (subscribe to the cvs list) smarty-cvs-unsubscribe@lists.php.net (unsubscribe from the cvs list) You can also browse the mailing list archives at - https://marc.theaimsgroup.com/?l=smarty&r=1&w=2 + http://marc.theaimsgroup.com/?l=smarty&r=1&w=2 Q: Can you change the mailing list so Reply-To sends to the list and not the user? A: Yes we could, but no we won't. Use "Reply-All" in your e-mail client to send - to the list. https://www.unicom.com/pw/reply-to-harmful.html + to the list. http://www.unicom.com/pw/reply-to-harmful.html TROUBLESHOOTING --------------- diff --git a/lib/smarty/QUICK_START b/lib/smarty/QUICK_START index 2e62c29..6ae3e46 100755 --- a/lib/smarty/QUICK_START +++ b/lib/smarty/QUICK_START @@ -96,7 +96,7 @@ Hello, {$name}! Now go to your new application through the web browser, -https://www.domain.com/myapp/index.php in our example. You should see the text +http://www.domain.com/myapp/index.php in our example. You should see the text "Hello Ned!" in your browser. Once you get this far, you can continue on to the Smarty Crash Course to learn diff --git a/lib/smarty/README b/lib/smarty/README index 2397d5f..08b397c 100755 --- a/lib/smarty/README +++ b/lib/smarty/README @@ -51,7 +51,7 @@ $smarty->unregisterFilter(...) Please refer to the online documentation for all specific changes: -https://www.smarty.net/documentation +http://www.smarty.net/documentation ---- @@ -570,6 +570,6 @@ In the template you can use it like this: Please look through it and send any questions/suggestions/etc to the forums. -https://www.phpinsider.com/smarty-forum/viewtopic.php?t=14168 +http://www.phpinsider.com/smarty-forum/viewtopic.php?t=14168 Monte and Uwe diff --git a/lib/smarty/SMARTY_2_BC_NOTES.txt b/lib/smarty/SMARTY_2_BC_NOTES.txt index 3f33b99..79a2cb1 100755 --- a/lib/smarty/SMARTY_2_BC_NOTES.txt +++ b/lib/smarty/SMARTY_2_BC_NOTES.txt @@ -61,7 +61,7 @@ class MySmarty extends Smarty { == Autoloader == Smarty 3 does register its own autoloader with spl_autoload_register. If your code has an existing __autoload function then this function must be explicitly registered on -the __autoload stack. See https://us3.php.net/manual/en/function.spl-autoload-register.php +the __autoload stack. See http://us3.php.net/manual/en/function.spl-autoload-register.php for further details. == Plugin Filenames == diff --git a/lib/smarty/composer.json b/lib/smarty/composer.json index 2de0ce2..2a1a43a 100755 --- a/lib/smarty/composer.json +++ b/lib/smarty/composer.json @@ -3,7 +3,7 @@ "type": "library", "description": "Smarty - the compiling PHP template engine", "keywords": ["templating"], - "homepage": "https://www.smarty.net", + "homepage": "http://www.smarty.net", "license": "LGPL-3.0", "authors": [ { @@ -22,7 +22,7 @@ "support": { "irc": "irc://irc.freenode.org/smarty", "issues": "https://github.com/smarty-php/smarty/issues", - "forum": "https://www.smarty.net/forums/" + "forum": "http://www.smarty.net/forums/" }, "require": { "php": ">=5.2" diff --git a/lib/smarty/libs/Config_File.class.php b/lib/smarty/libs/Config_File.class.php index 12d9f2b..c25f2a0 100755 --- a/lib/smarty/libs/Config_File.class.php +++ b/lib/smarty/libs/Config_File.class.php @@ -21,7 +21,7 @@ * Smarty mailing list. Send a blank e-mail to * smarty-discussion-subscribe@googlegroups.com * - * @link https://www.smarty.net/ + * @link http://www.smarty.net/ * @version 2.6.25-dev * @copyright Copyright: 2001-2005 New Digital Group, Inc. * @author Andrei Zmievski diff --git a/lib/smarty/libs/Smarty.class.php b/lib/smarty/libs/Smarty.class.php index d6f100e..a029f94 100755 --- a/lib/smarty/libs/Smarty.class.php +++ b/lib/smarty/libs/Smarty.class.php @@ -20,7 +20,7 @@ * Smarty mailing list. Send a blank e-mail to * smarty-discussion-subscribe@googlegroups.com * - * @link https://www.smarty.net/ + * @link http://www.smarty.net/ * @copyright 2015 New Digital Group, Inc. * @copyright 2015 Uwe Tews * @author Monte Ohrt @@ -1385,7 +1385,7 @@ class Smarty extends Smarty_Internal_TemplateBase /** * Error Handler to mute expected messages * - * @link https://php.net/set_error_handler + * @link http://php.net/set_error_handler * * @param integer $errno Error level * @param $errstr @@ -1447,7 +1447,7 @@ class Smarty extends Smarty_Internal_TemplateBase { /* error muting is done because some people implemented custom error_handlers using - https://php.net/set_error_handler and for some reason did not understand the following paragraph: + http://php.net/set_error_handler and for some reason did not understand the following paragraph: It is important to remember that the standard PHP error handler is completely bypassed for the error types specified by error_types unless the callback function returns FALSE. diff --git a/lib/smarty/libs/SmartyBC.class.php b/lib/smarty/libs/SmartyBC.class.php index fe90de9..1dd529c 100755 --- a/lib/smarty/libs/SmartyBC.class.php +++ b/lib/smarty/libs/SmartyBC.class.php @@ -18,7 +18,7 @@ * Smarty mailing list. Send a blank e-mail to * smarty-discussion-subscribe@googlegroups.com * - * @link https://www.smarty.net/ + * @link http://www.smarty.net/ * @copyright 2008 New Digital Group, Inc. * @author Monte Ohrt * @author Uwe Tews diff --git a/lib/smarty/libs/Smarty_Compiler.class.php b/lib/smarty/libs/Smarty_Compiler.class.php index 522cc67..c1bc798 100755 --- a/lib/smarty/libs/Smarty_Compiler.class.php +++ b/lib/smarty/libs/Smarty_Compiler.class.php @@ -18,7 +18,7 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * @link https://smarty.php.net/ + * @link http://smarty.php.net/ * @author Monte Ohrt * @author Andrei Zmievski * @version 2.6.25-dev diff --git a/lib/smarty/libs/debug.tpl b/lib/smarty/libs/debug.tpl index 07e1fc2..5526cbc 100755 --- a/lib/smarty/libs/debug.tpl +++ b/lib/smarty/libs/debug.tpl @@ -1,6 +1,6 @@ {capture name='_smarty_debug' assign=debug_output} - - + + Smarty Debug Console