diff --git a/Archiv/AW Was tun bei Statusõnderung.msg b/Archiv/AW Was tun bei Statusõnderung.msg
index a1fedfd..a8197d1 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 41ce2c9..d2c9428 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 b2acc78..07afe81 100755
--- a/Archiv/ideenmanagement.sql
+++ b/Archiv/ideenmanagement.sql
@@ -1,6 +1,6 @@
-- phpMyAdmin SQL Dump
-- version 3.3.3
--- http://www.phpmyadmin.net
+-- https://www.phpmyadmin.net
--
-- Host: localhost
-- Erstellungszeit: 11. Mai 2011 um 14:23
diff --git a/adLDAP/CHANGELOG.txt b/adLDAP/CHANGELOG.txt
index 0e4057c..94b2f0a 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
-http://adldap.sourceforge.net/
+https://adldap.sourceforge.net/
CHANGELOG
diff --git a/adLDAP/README.txt b/adLDAP/README.txt
index eb49297..2a4a9f3 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
-http://adldap.sourceforge.net/
+https://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 http://adldap.sourceforge.net/
+information, please visit https://adldap.sourceforge.net/
-------------------
-For full API documentation see http://adldap.sourceforge.net/wiki/doku.php?id=api
+For full API documentation see https://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 5e26a57..4e7f9ac 100755
--- a/adLDAP/URLs.txt
+++ b/adLDAP/URLs.txt
@@ -1,2 +1,2 @@
-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
+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
diff --git a/adLDAP/adLDAP.php b/adLDAP/adLDAP.php
index e3d4640..8163c6a 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
- * http://adldap.sourceforge.net/
+ * https://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 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1
+ * @license https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1
* @revision $Revision: 91 $
* @version 3.3.2
- * @link http://adldap.sourceforge.net/
+ * @link https://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
-* http://adldap.sourceforge.net/wiki/doku.php?id=api
+* https://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. http://support.microsoft.com/?kbid=321360
+ * AD does not return the primary group. https://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
- * http://adldap.sourceforge.net/wiki/doku.php?id=ldap_over_ssl
+ * https://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: http://www.php.net/ldap');
+ throw new adLDAPException('No LDAP support for PHP. See: https://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 http://www.php.net/manual/en/book.bc.php
+ * @requires bcmath https://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] http://www.php.net/manual/en/book.bc.php"); };
+ if (!function_exists('bcmod')) { return ("Missing function support [bcmod] https://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: http://msdn.microsoft.com/en-us/library/ms974598.aspx
+ // See MSDN: https://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 http://adldap.sourceforge.net/wiki/doku.php?id=api_folder_functions
+ * See https://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 http://tools.ietf.org/html/rfc1685 for more information.
+ * See https://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
- * http://support.microsoft.com/?kbid=321360
+ * https://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
- * http://support.microsoft.com/?kbid=321360
+ * https://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 99cd475..95516b5 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
- * http://adldap.sourceforge.net/
+ * https://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 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1
+ * @license https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1
* @revision $Revision: 91 $
* @version 3.3.2
- * @link http://adldap.sourceforge.net/
+ * @link https://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
-* http://adldap.sourceforge.net/wiki/doku.php?id=api
+* https://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. http://support.microsoft.com/?kbid=321360
+ * AD does not return the primary group. https://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
- * http://adldap.sourceforge.net/wiki/doku.php?id=ldap_over_ssl
+ * https://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: http://www.php.net/ldap');
+ throw new adLDAPException('No LDAP support for PHP. See: https://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 http://www.php.net/manual/en/book.bc.php
+ * @requires bcmath https://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] http://www.php.net/manual/en/book.bc.php"); };
+ if (!function_exists('bcmod')) { return ("Missing function support [bcmod] https://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: http://msdn.microsoft.com/en-us/library/ms974598.aspx
+ // See MSDN: https://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 http://adldap.sourceforge.net/wiki/doku.php?id=api_folder_functions
+ * See https://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 http://tools.ietf.org/html/rfc1685 for more information.
+ * See https://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
- * http://support.microsoft.com/?kbid=321360
+ * https://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
- * http://support.microsoft.com/?kbid=321360
+ * https://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 99ce94a..5f002ca 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
- * http://adldap.sourceforge.net/
+ * https://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 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1
+ * @license https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1
* @revision $Revision: 91 $
* @version 3.3.2
- * @link http://adldap.sourceforge.net/
+ * @link https://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
-* http://adldap.sourceforge.net/wiki/doku.php?id=api
+* https://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. http://support.microsoft.com/?kbid=321360
+ * AD does not return the primary group. https://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
- * http://adldap.sourceforge.net/wiki/doku.php?id=ldap_over_ssl
+ * https://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: http://www.php.net/ldap');
+ throw new adLDAPException('No LDAP support for PHP. See: https://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 http://www.php.net/manual/en/book.bc.php
+ * @requires bcmath https://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] http://www.php.net/manual/en/book.bc.php"); };
+ if (!function_exists('bcmod')) { return ("Missing function support [bcmod] https://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: http://msdn.microsoft.com/en-us/library/ms974598.aspx
+ // See MSDN: https://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 http://adldap.sourceforge.net/wiki/doku.php?id=api_folder_functions
+ * See https://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 http://tools.ietf.org/html/rfc1685 for more information.
+ * See https://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
- * http://support.microsoft.com/?kbid=321360
+ * https://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
- * http://support.microsoft.com/?kbid=321360
+ * https://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 ce66d32..41b8867 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: http://".$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF'])."/menu.htm";
+ $redir="Location: https://".$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF'])."/menu.htm";
header($redir);
exit;
}
diff --git a/ajaxtabs.js b/ajaxtabs.js
index 997e146..fb88ef2 100755
--- a/ajaxtabs.js
+++ b/ajaxtabs.js
@@ -1,8 +1,8 @@
-//** Ajax Tabs Content script v2.0- © Dynamic Drive DHTML code library (http://www.dynamicdrive.com)
+//** Ajax Tabs Content script v2.0- © Dynamic Drive DHTML code library (https://www.dynamicdrive.com)
//** Updated Oct 21st, 07 to version 2.0. Contains numerous improvements
//** Updated Feb 18th, 08 to version 2.1: Adds a public "tabinstance.cycleit(dir)" method to cycle forward or backward between tabs dynamically. Only .js file changed from v2.0.
//** Updated April 8th, 08 to version 2.2:
-// -Adds support for expanding a tab using a URL parameter (ie: http://mysite.com/tabcontent.htm?tabinterfaceid=0)
+// -Adds support for expanding a tab using a URL parameter (ie: https://mysite.com/tabcontent.htm?tabinterfaceid=0)
// -Modified Ajax routine so testing the script out locally in IE7 now works
var ddajaxtabssettings={}
@@ -44,7 +44,7 @@ ddajaxtabs.connect=function(pageurl, tabinstance){
page_request = new XMLHttpRequest()
else
return false
- var ajaxfriendlyurl=pageurl.replace(/^http:\/\/[^\/]+\//i, "http://"+window.location.hostname+"/")
+ var ajaxfriendlyurl=pageurl.replace(/^https:\/\/[^\/]+\//i, "https://"+window.location.hostname+"/")
page_request.onreadystatechange=function(){ddajaxtabs.loadpage(page_request, pageurl, tabinstance)}
if (ddajaxtabssettings.bustcachevar) //if bust caching of external page
bustcacheparameter=(ajaxfriendlyurl.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
diff --git a/beteiligtenbenennung.php b/beteiligtenbenennung.php
index 427f3eb..3b8877b 100755
--- a/beteiligtenbenennung.php
+++ b/beteiligtenbenennung.php
@@ -796,7 +796,7 @@ if($action == 'frist2'){
Um den Vorschlag vollständig zu lesen sowie Ihre Stellungnahme abzugeben, melden Sie sich am System an und wechseln Sie auf das Register \"Beteiligtenbereich\".
- Klicken Sie hier um zum Ideenmanagement zu gelangen. + Klicken Sie hier um zum Ideenmanagement zu gelangen.
Wir können die Motivation zum Einreichen der Ideen steigern, indem wir schnelle, aber ausreichend begründete Antworten geben.
Der Bearbeitungsaufwand soll sich am zu erwartenden Nutzen orientieren.
@@ -1040,7 +1040,7 @@ if($action == 'anschreiben1'){
Um den Vorschlag vollständig zu lesen sowie Ihre Stellungnahme abzugeben, melden Sie sich am System an und wechseln Sie auf das Register \"Beteiligtenbereich\".
- Klicken Sie hier um zum Ideenmanagement zu gelangen. + Klicken Sie hier um zum Ideenmanagement zu gelangen.
Wir können die Motivation zum Einreichen der Ideen steigern, indem wir schnelle, aber ausreichend begründete Antworten geben.
Der Bearbeitungsaufwand soll sich am zu erwartenden Nutzen orientieren.
diff --git a/dyncalendar/browserSniffer.js b/dyncalendar/browserSniffer.js
index fb76375..3ccf4a9 100755
--- a/dyncalendar/browserSniffer.js
+++ b/dyncalendar/browserSniffer.js
@@ -37,8 +37,8 @@
// is_dec, is_sinix, is_freebsd, is_bsd
// is_vms
//
-// See http://www.it97.de/JavaScript/JS_tutorial/bstat/navobj.html and
-// http://www.it97.de/JavaScript/JS_tutorial/bstat/Browseraol.html
+// See https://www.it97.de/JavaScript/JS_tutorial/bstat/navobj.html and
+// https://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 4474727..6be1e70 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: |
- * | http://www.phpguru.org/static/license.html |
+ * | https://www.phpguru.org/static/license.html |
* o------------------------------------------------------------------------------o
*
* © Copyright 2008 Richard Heyes
diff --git a/edit.php b/edit.php
index cabc9cc..0f9a72f 100755
--- a/edit.php
+++ b/edit.php
@@ -324,7 +324,7 @@ if($action == 'save'){
Um den Hinweis zu kommentieren melden Sie sich bitte am System an und wählen den Vorschlag im Erfassungsbereich unter Status aus, um
einen Hinweis zu erfassen!
- Link zum System: Ideenmanagement
+ Link zum System: Ideenmanagement
Diese Mail wurde automatisch generiert!
Antworten Sie daher nicht auf diese Mail.
diff --git a/edit_ausschussmitglieder.php b/edit_ausschussmitglieder.php
index 76cae79..96cc30e 100755
--- a/edit_ausschussmitglieder.php
+++ b/edit_ausschussmitglieder.php
@@ -163,7 +163,7 @@ if($action == 'step2'){
Sie wurden im Ideenmanagement-System zum Mitglied im Ausschuss/Idee benannt.
- Sie können sich hier anmelden: http://www.hs-ludwigsburg.de/idee
+ Sie können sich hier anmelden: https://www.hs-ludwigsburg.de/idee
Bei Fragen wenden Sie sich bitte an den Qualitätsmanagementbeauftragten.
@@ -219,7 +219,7 @@ if($action == 'step2'){
Sie wurden im Ideenmanagement-System zur Vertretung des Mitglieds $row_vervon[vorname] $row_vervon[nachname] im Ausschuss/Idee benannt.
- Sie können sich hier anmelden: http://www.hs-ludwigsburg.de/idee
+ Sie können sich hier anmelden: https://www.hs-ludwigsburg.de/idee
Bei Fragen wenden Sie sich bitte an den Qualitätsmanagementbeauftragten.
diff --git a/erfassen_eingabe.php b/erfassen_eingabe.php
index dc98946..8b89dcc 100755
--- a/erfassen_eingabe.php
+++ b/erfassen_eingabe.php
@@ -164,7 +164,7 @@ if($action == 'save'){
- Klicken Sie hier um zum Ideenmanagement zu gelangen.
+ Klicken Sie hier um zum Ideenmanagement zu gelangen.
Diese Mail wurde automatisch generiert!
Antworten Sie daher nicht auf diese Mail.
@@ -224,7 +224,7 @@ if($action == 'save'){
- Klicken Sie hier um zum Ideenmanagement zu gelangen.
+ Klicken Sie hier um zum Ideenmanagement zu gelangen.
Diese Mail wurde automatisch generiert!
Antworten Sie daher nicht auf diese Mail.
diff --git a/erfassen_status.php b/erfassen_status.php
index aa46a86..c9dc6dc 100755
--- a/erfassen_status.php
+++ b/erfassen_status.php
@@ -286,7 +286,7 @@ if($action == 'status2'){
Um den Hinweis zu kommentieren, melden Sie sich bitte im System an und wählen den betroffenen Vorschlag im Adminbereich. Nach Auswahl des Vorschlages kann ein Adminhinweis in der Übersicht erfasst werden.
- Link zum System: Ideenmanagement
+ Link zum System: Ideenmanagement
Diese Mail wurde automatisch generiert!
-
+
Antworten Sie daher nicht auf diese Mail.
diff --git a/fancybox/jquery-1.5.1.min.js b/fancybox/jquery-1.5.1.min.js
index 6437874..273fe73 100755
--- a/fancybox/jquery-1.5.1.min.js
+++ b/fancybox/jquery-1.5.1.min.js
@@ -1,16 +1,16 @@
/*!
* jQuery JavaScript Library v1.5.1
- * http://jquery.com/
+ * https://jquery.com/
*
* Copyright 2011, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
+ * https://jquery.org/license
*
* Includes Sizzle.js
- * http://sizzlejs.com/
+ * https://sizzlejs.com/
* Copyright 2011, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
*
* Date: Wed Feb 23 13:55:29 2011 -0500
*/
-(function(a,b){function cg(a){return d.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cd(a){if(!bZ[a]){var b=d("<"+a+">").appendTo("body"),c=b.css("display");b.remove();if(c==="none"||c==="")c="block";bZ[a]=c}return bZ[a]}function cc(a,b){var c={};d.each(cb.concat.apply([],cb.slice(0,b)),function(){c[this]=a});return c}function bY(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function bX(){try{return new a.XMLHttpRequest}catch(b){}}function bW(){d(a).unload(function(){for(var a in bU)bU[a](0,1)})}function bQ(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var e=a.dataTypes,f={},g,h,i=e.length,j,k=e[0],l,m,n,o,p;for(g=1;g=0===c})}function N(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function F(a,b){return(a&&a!=="*"?a+".":"")+b.replace(r,"`").replace(s,"&")}function E(a){var b,c,e,f,g,h,i,j,k,l,m,n,o,q=[],r=[],s=d._data(this,"events");if(a.liveFired!==this&&s&&s.live&&!a.target.disabled&&(!a.button||a.type!=="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var t=s.live.slice(0);for(i=0;ia";var e=b.getElementsByTagName("*"),f=b.getElementsByTagName("a")[0],g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=b.getElementsByTagName("input")[0];if(e&&e.length&&f){d.support={leadingWhitespace:b.firstChild.nodeType===3,tbody:!b.getElementsByTagName("tbody").length,htmlSerialize:!!b.getElementsByTagName("link").length,style:/red/.test(f.getAttribute("style")),hrefNormalized:f.getAttribute("href")==="/a",opacity:/^0.55$/.test(f.style.opacity),cssFloat:!!f.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,deleteExpando:!0,optDisabled:!1,checkClone:!1,noCloneEvent:!0,noCloneChecked:!0,boxModel:null,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableHiddenOffsets:!0},i.checked=!0,d.support.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,d.support.optDisabled=!h.disabled;var j=null;d.support.scriptEval=function(){if(j===null){var b=c.documentElement,e=c.createElement("script"),f="script"+d.now();try{e.appendChild(c.createTextNode("window."+f+"=1;"))}catch(g){}b.insertBefore(e,b.firstChild),a[f]?(j=!0,delete a[f]):j=!1,b.removeChild(e),b=e=f=null}return j};try{delete b.test}catch(k){d.support.deleteExpando=!1}!b.addEventListener&&b.attachEvent&&b.fireEvent&&(b.attachEvent("onclick",function l(){d.support.noCloneEvent=!1,b.detachEvent("onclick",l)}),b.cloneNode(!0).fireEvent("onclick")),b=c.createElement("div"),b.innerHTML="";var m=c.createDocumentFragment();m.appendChild(b.firstChild),d.support.checkClone=m.cloneNode(!0).cloneNode(!0).lastChild.checked,d(function(){var a=c.createElement("div"),b=c.getElementsByTagName("body")[0];if(b){a.style.width=a.style.paddingLeft="1px",b.appendChild(a),d.boxModel=d.support.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,d.support.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="",d.support.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
";var e=a.getElementsByTagName("td");d.support.reliableHiddenOffsets=e[0].offsetHeight===0,e[0].style.display="",e[1].style.display="none",d.support.reliableHiddenOffsets=d.support.reliableHiddenOffsets&&e[0].offsetHeight===0,a.innerHTML="",b.removeChild(a).style.display="none",a=e=null}});var n=function(a){var b=c.createElement("div");a="on"+a;if(!b.attachEvent)return!0;var d=a in b;d||(b.setAttribute(a,"return;"),d=typeof b[a]==="function"),b=null;return d};d.support.submitBubbles=n("submit"),d.support.changeBubbles=n("change"),b=e=f=null}})();var e=/^(?:\{.*\}|\[.*\])$/;d.extend({cache:{},uuid:0,expando:"jQuery"+(d.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?d.cache[a[d.expando]]:a[d.expando];return!!a&&!g(a)},data:function(a,c,e,f){if(d.acceptData(a)){var g=d.expando,h=typeof c==="string",i,j=a.nodeType,k=j?d.cache:a,l=j?a[d.expando]:a[d.expando]&&d.expando;if((!l||f&&l&&!k[l][g])&&h&&e===b)return;l||(j?a[d.expando]=l=++d.uuid:l=d.expando),k[l]||(k[l]={},j||(k[l].toJSON=d.noop));if(typeof c==="object"||typeof c==="function")f?k[l][g]=d.extend(k[l][g],c):k[l]=d.extend(k[l],c);i=k[l],f&&(i[g]||(i[g]={}),i=i[g]),e!==b&&(i[c]=e);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[c]:i}},removeData:function(b,c,e){if(d.acceptData(b)){var f=d.expando,h=b.nodeType,i=h?d.cache:b,j=h?b[d.expando]:d.expando;if(!i[j])return;if(c){var k=e?i[j][f]:i[j];if(k){delete k[c];if(!g(k))return}}if(e){delete i[j][f];if(!g(i[j]))return}var l=i[j][f];d.support.deleteExpando||i!=a?delete i[j]:i[j]=null,l?(i[j]={},h||(i[j].toJSON=d.noop),i[j][f]=l):h&&(d.support.deleteExpando?delete b[d.expando]:b.removeAttribute?b.removeAttribute(d.expando):b[d.expando]=null)}},_data:function(a,b,c){return d.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=d.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),d.fn.extend({data:function(a,c){var e=null;if(typeof a==="undefined"){if(this.length){e=d.data(this[0]);if(this[0].nodeType===1){var g=this[0].attributes,h;for(var i=0,j=g.length;it ","
"],tr:[2,"","
"],td:[3,"
"],col:[2,"","
"],area:[1,""],_default:[0,"",""]};X.optgroup=X.option,X.tbody=X.tfoot=X.colgroup=X.caption=X.thead,X.th=X.td,d.support.htmlSerialize||(X._default=[1,"div"&&!n?m.childNodes:[];for(var p=o.length-1;p>=0;--p)d.nodeName(o[p],"tbody")&&!o[p].childNodes.length&&o[p].parentNode.removeChild(o[p])}!d.support.leadingWhitespace&&Q.test(i)&&m.insertBefore(b.createTextNode(Q.exec(i)[0]),m.firstChild),i=m.childNodes}}else i=b.createTextNode(i);i.nodeType?g.push(i):g=d.merge(g,i)}if(e)for(h=0;g[h];h++)!f||!d.nodeName(g[h],"script")||g[h].type&&g[h].type.toLowerCase()!=="text/javascript"?(g[h].nodeType===1&&g.splice.apply(g,[h+1,0].concat(d.makeArray(g[h].getElementsByTagName("script")))),e.appendChild(g[h])):f.push(g[h].parentNode?g[h].parentNode.removeChild(g[h]):g[h]);return g},cleanData:function(a){var b,c,e=d.cache,f=d.expando,g=d.event.special,h=d.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&d.noData[j.nodeName.toLowerCase()])continue;c=j[d.expando];if(c){b=e[c]&&e[c][f];if(b&&b.events){for(var k in b.events)g[k]?d.event.remove(j,k):d.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[d.expando]:j.removeAttribute&&j.removeAttribute(d.expando),delete e[c]}}}});var bb=/alpha\([^)]*\)/i,bc=/opacity=([^)]*)/,bd=/-([a-z])/ig,be=/([A-Z])/g,bf=/^-?\d+(?:px)?$/i,bg=/^-?\d/,bh={position:"absolute",visibility:"hidden",display:"block"},bi=["Left","Right"],bj=["Top","Bottom"],bk,bl,bm,bn=function(a,b){return b.toUpperCase()};d.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return d.access(this,a,c,!0,function(a,c,e){return e!==b?d.style(a,c,e):d.css(a,c)})},d.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bk(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{zIndex:!0,fontWeight:!0,opacity:!0,zoom:!0,lineHeight:!0},cssProps:{"float":d.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,e,f){if(a&&a.nodeType!==3&&a.nodeType!==8&&a.style){var g,h=d.camelCase(c),i=a.style,j=d.cssHooks[h];c=d.cssProps[h]||h;if(e===b){if(j&&"get"in j&&(g=j.get(a,!1,f))!==b)return g;return i[c]}if(typeof e==="number"&&isNaN(e)||e==null)return;typeof e==="number"&&!d.cssNumber[h]&&(e+="px");if(!j||!("set"in j)||(e=j.set(a,e))!==b)try{i[c]=e}catch(k){}}},css:function(a,c,e){var f,g=d.camelCase(c),h=d.cssHooks[g];c=d.cssProps[g]||g;if(h&&"get"in h&&(f=h.get(a,!0,e))!==b)return f;if(bk)return bk(a,c,g)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]},camelCase:function(a){return a.replace(bd,bn)}}),d.curCSS=d.css,d.each(["height","width"],function(a,b){d.cssHooks[b]={get:function(a,c,e){var f;if(c){a.offsetWidth!==0?f=bo(a,b,e):d.swap(a,bh,function(){f=bo(a,b,e)});if(f<=0){f=bk(a,b,b),f==="0px"&&bm&&(f=bm(a,b,b));if(f!=null)return f===""||f==="auto"?"0px":f}if(f<0||f==null){f=a.style[b];return f===""||f==="auto"?"0px":f}return typeof f==="string"?f:f+"px"}},set:function(a,b){if(!bf.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),d.support.opacity||(d.cssHooks.opacity={get:function(a,b){return bc.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style;c.zoom=1;var e=d.isNaN(b)?"":"alpha(opacity="+b*100+")",f=c.filter||"";c.filter=bb.test(f)?f.replace(bb,e):c.filter+" "+e}}),c.defaultView&&c.defaultView.getComputedStyle&&(bl=function(a,c,e){var f,g,h;e=e.replace(be,"-$1").toLowerCase();if(!(g=a.ownerDocument.defaultView))return b;if(h=g.getComputedStyle(a,null))f=h.getPropertyValue(e),f===""&&!d.contains(a.ownerDocument.documentElement,a)&&(f=d.style(a,e));return f}),c.documentElement.currentStyle&&(bm=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bf.test(d)&&bg.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bk=bl||bm,d.expr&&d.expr.filters&&(d.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!d.support.reliableHiddenOffsets&&(a.style.display||d.css(a,"display"))==="none"},d.expr.filters.visible=function(a){return!d.expr.filters.hidden(a)});var bp=/%20/g,bq=/\[\]$/,br=/\r?\n/g,bs=/#.*$/,bt=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bu=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bv=/(?:^file|^widget|\-extension):$/,bw=/^(?:GET|HEAD)$/,bx=/^\/\//,by=/\?/,bz=/
diff --git a/templates/modern/ausschuss_bearbeitung_ansicht.html b/templates/modern/ausschuss_bearbeitung_ansicht.html
index 6524246..1b3ee46 100755
--- a/templates/modern/ausschuss_bearbeitung_ansicht.html
+++ b/templates/modern/ausschuss_bearbeitung_ansicht.html
@@ -9,7 +9,7 @@
/***********************************************
* Ajax Tabs Content script v2.2- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
- * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
+ * Visit Dynamic Drive at https://www.dynamicdrive.com/ for full source code
***********************************************/
diff --git a/templates/modern/bearbeiten.html b/templates/modern/bearbeiten.html
index fa9e8ef..43672be 100755
--- a/templates/modern/bearbeiten.html
+++ b/templates/modern/bearbeiten.html
@@ -9,7 +9,7 @@
/***********************************************
* Ajax Tabs Content script v2.2- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
- * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
+ * Visit Dynamic Drive at https://www.dynamicdrive.com/ for full source code
***********************************************/
diff --git a/templates/modern/beteiligte_bearbeiten.html b/templates/modern/beteiligte_bearbeiten.html
index 3457c49..fec3a64 100755
--- a/templates/modern/beteiligte_bearbeiten.html
+++ b/templates/modern/beteiligte_bearbeiten.html
@@ -9,7 +9,7 @@
/***********************************************
* Ajax Tabs Content script v2.2- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
- * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
+ * Visit Dynamic Drive at https://www.dynamicdrive.com/ for full source code
***********************************************/
diff --git a/templates/modern/css/styles_refill.css b/templates/modern/css/styles_refill.css
index 3553eee..2e0e780 100755
--- a/templates/modern/css/styles_refill.css
+++ b/templates/modern/css/styles_refill.css
@@ -1,6 +1,6 @@
/*
-http://jigsaw.w3.org/css-validator/validator
-http://www.w3.org/TR/CSS21/syndata.html#color-units
+https://jigsaw.w3.org/css-validator/validator
+https://www.w3.org/TR/CSS21/syndata.html#color-units
*/
font.hd { /* Überschrifteinstellungen */
@@ -312,7 +312,7 @@ li.abstand {
/*********************** Animated Tabs ************************/
/*Credits: Dynamic Drive CSS Library */
-/*URL: http://www.dynamicdrive.com/style/ */
+/*URL: https://www.dynamicdrive.com/style/ */
.animatedtabs{
@@ -422,7 +422,7 @@ top: 0;
/************************** Scuarebutton ********************************/
/*Credits: Dynamic Drive CSS Library */
-/*URL: http://www.dynamicdrive.com/style/ */
+/*URL: https://www.dynamicdrive.com/style/ */
a.squarebutton_blue{
background: transparent url('../images/button/square-blue-left.gif') no-repeat top left;
@@ -454,7 +454,7 @@ color: black;
}
.buttonwrapper{ /* Container you can use to surround a CSS button to clear float */
-overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
+overflow: hidden; /*See: https://www.quirksmode.org/css/clearing.html */
width: 100%;
}
@@ -498,7 +498,7 @@ width: 100%;
}
-/* Textfeldformatierung stammen von: http://www.web-toolbox.net/webtoolbox/css/css-formularfeld.htm#ixzz1EmDPi3Ti */
+/* Textfeldformatierung stammen von: https://www.web-toolbox.net/webtoolbox/css/css-formularfeld.htm#ixzz1EmDPi3Ti */
.eingabe_search {
font-family : Verdana,Arial,Helvetica,sans-serif;
font-weight : bold;
diff --git a/templates/modern/erfassen_eingabe.html b/templates/modern/erfassen_eingabe.html
index 5b033f0..dacc99c 100755
--- a/templates/modern/erfassen_eingabe.html
+++ b/templates/modern/erfassen_eingabe.html
@@ -10,7 +10,7 @@
/***********************************************
* Ajax Tabs Content script v2.2- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
- * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
+ * Visit Dynamic Drive at https://www.dynamicdrive.com/ for full source code
***********************************************/
diff --git a/templates/modern/erfassen_status.html b/templates/modern/erfassen_status.html
index 93fff09..751b017 100755
--- a/templates/modern/erfassen_status.html
+++ b/templates/modern/erfassen_status.html
@@ -100,7 +100,7 @@
/***********************************************
* Ajax Tabs Content script v2.2- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
- * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
+ * Visit Dynamic Drive at https://www.dynamicdrive.com/ for full source code
***********************************************/
diff --git a/templates/modern/external2.html b/templates/modern/external2.html
index bc6a4c3..7a5e276 100755
--- a/templates/modern/external2.html
+++ b/templates/modern/external2.html
@@ -1,5 +1,5 @@
-
-
+
+
Angaben gemäß § 5 TMG:
diff --git a/templates/modern/js/ajaxtabs.js b/templates/modern/js/ajaxtabs.js
index bff4403..f14088e 100755
--- a/templates/modern/js/ajaxtabs.js
+++ b/templates/modern/js/ajaxtabs.js
@@ -1,8 +1,8 @@
-//** Ajax Tabs Content script v2.0- © Dynamic Drive DHTML code library (http://www.dynamicdrive.com)
+//** Ajax Tabs Content script v2.0- © Dynamic Drive DHTML code library (https://www.dynamicdrive.com)
//** Updated Oct 21st, 07 to version 2.0. Contains numerous improvements
//** Updated Feb 18th, 08 to version 2.1: Adds a public "tabinstance.cycleit(dir)" method to cycle forward or backward between tabs dynamically. Only .js file changed from v2.0.
//** Updated April 8th, 08 to version 2.2:
-// -Adds support for expanding a tab using a URL parameter (ie: http://mysite.com/tabcontent.htm?tabinterfaceid=0)
+// -Adds support for expanding a tab using a URL parameter (ie: https://mysite.com/tabcontent.htm?tabinterfaceid=0)
// -Modified Ajax routine so testing the script out locally in IE7 now works
var ddajaxtabssettings={}
@@ -50,7 +50,7 @@ ddajaxtabs.connect=function(pageurl, tabinstance){
else
return false
- var ajaxfriendlyurl=pageurl.replace(/^http:\/\/[^\/]+\//i, "http://"+window.location.hostname+"/")
+ var ajaxfriendlyurl=pageurl.replace(/^https:\/\/[^\/]+\//i, "https://"+window.location.hostname+"/")
page_request.onreadystatechange=function(){ddajaxtabs.loadpage(page_request, pageurl, tabinstance)}
if (ddajaxtabssettings.bustcachevar) //if bust caching of external page
bustcacheparameter=(ajaxfriendlyurl.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
diff --git a/templates/modern/js/jquery.js b/templates/modern/js/jquery.js
index 7c24308..320e6d4 100755
--- a/templates/modern/js/jquery.js
+++ b/templates/modern/js/jquery.js
@@ -1,13 +1,13 @@
/*!
* jQuery JavaScript Library v1.4.2
- * http://jquery.com/
+ * https://jquery.com/
*
* Copyright 2010, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
+ * https://jquery.org/license
*
* Includes Sizzle.js
- * http://sizzlejs.com/
+ * https://sizzlejs.com/
* Copyright 2010, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
*
diff --git a/templates/modern/menu_admin.html b/templates/modern/menu_admin.html
index c327157..6a548ef 100755
--- a/templates/modern/menu_admin.html
+++ b/templates/modern/menu_admin.html
@@ -1,6 +1,6 @@
{if $action == ''}
-
-
+
+