Skip to content

Instantly share code, notes, and snippets.

@dsnopek
Last active February 23, 2018 14:31
Show Gist options
  • Save dsnopek/5c0107f4b22ad7f63efd09af588d32d6 to your computer and use it in GitHub Desktop.
Save dsnopek/5c0107f4b22ad7f63efd09af588d32d6 to your computer and use it in GitHub Desktop.
Patch to update full Drupal 6.38 release to Drupal 6.41
diff -Nur drupal-6.38/includes/common.inc drupal-6.41/includes/common.inc
--- drupal-6.38/includes/common.inc 2016-02-24 13:20:15.000000000 -0600
+++ drupal-6.41/includes/common.inc 2018-02-22 10:29:07.000000000 -0600
@@ -1499,7 +1499,7 @@
);
if (!isset($options['external'])) {
- $options['external'] = menu_path_is_external($path);
+ $options['external'] = $_GET['q'] === $path ? FALSE : menu_path_is_external($path);
}
// May need language dependent rewriting if language.inc is present.
diff -Nur drupal-6.38/LICENSE.txt drupal-6.41/LICENSE.txt
--- drupal-6.38/LICENSE.txt 2014-09-23 14:24:50.000000000 -0500
+++ drupal-6.41/LICENSE.txt 2018-02-22 10:29:07.000000000 -0600
@@ -1,12 +1,12 @@
- GNU GENERAL PUBLIC LICENSE
- Version 2, June 1991
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
- Preamble
+ Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
@@ -56,7 +56,7 @@
The precise terms and conditions for copying, distribution and
modification follow.
- GNU GENERAL PUBLIC LICENSE
+ GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
@@ -255,7 +255,7 @@
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
- NO WARRANTY
+ NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
@@ -277,9 +277,9 @@
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
- END OF TERMS AND CONDITIONS
+ END OF TERMS AND CONDITIONS
- How to Apply These Terms to Your New Programs
+ How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
diff -Nur drupal-6.38/misc/drupal.js drupal-6.41/misc/drupal.js
--- drupal-6.38/misc/drupal.js 2016-02-24 13:20:15.000000000 -0600
+++ drupal-6.41/misc/drupal.js 2018-02-22 10:29:07.000000000 -0600
@@ -20,6 +20,42 @@
return jquery_init.call(this, selector, context, rootjQuery);
};
jQuery.fn.init.prototype = jquery_init.prototype;
+
+ /**
+ * Pre-filter Ajax requests to guard against XSS attacks.
+ *
+ * See https://github.com/jquery/jquery/issues/2432
+ */
+ if ($.ajaxPrefilter) {
+ // For newer versions of jQuery, use an Ajax prefilter to prevent
+ // auto-executing script tags from untrusted domains. This is similar to the
+ // fix that is built in to jQuery 3.0 and higher.
+ $.ajaxPrefilter(function (s) {
+ if (s.crossDomain) {
+ s.contents.script = false;
+ }
+ });
+ }
+ else if ($.httpData) {
+ // For the version of jQuery that ships with Drupal core, override
+ // jQuery.httpData to prevent auto-detecting "script" data types from
+ // untrusted domains.
+ var jquery_httpData = $.httpData;
+ $.httpData = function (xhr, type, s) {
+ // @todo Consider backporting code from newer jQuery versions to check for
+ // a cross-domain request here, rather than using Drupal.urlIsLocal() to
+ // block scripts from all URLs that are not on the same site.
+ if (!type && (!s || !Drupal.urlIsLocal(s.url))) {
+ var content_type = xhr.getResponseHeader('content-type') || '';
+ if (content_type.indexOf('javascript') >= 0) {
+ // Default to a safe data type.
+ type = 'text';
+ }
+ }
+ return jquery_httpData.call(this, xhr, type, s);
+ };
+ $.httpData.prototype = jquery_httpData.prototype;
+ }
})();
var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };
@@ -71,7 +107,7 @@
*/
Drupal.checkPlain = function(str) {
str = String(str);
- var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
+ var replace = { '&': '&amp;', "'": '&#39;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
for (var character in replace) {
var regex = new RegExp(character, 'g');
str = str.replace(regex, replace[character]);
@@ -177,6 +213,72 @@
};
/**
+ * Returns the passed in URL as an absolute URL.
+ *
+ * @param url
+ * The URL string to be normalized to an absolute URL.
+ *
+ * @return
+ * The normalized, absolute URL.
+ *
+ * @see https://github.com/angular/angular.js/blob/v1.4.4/src/ng/urlUtils.js
+ * @see https://grack.com/blog/2009/11/17/absolutizing-url-in-javascript
+ * @see https://github.com/jquery/jquery-ui/blob/1.11.4/ui/tabs.js#L53
+ */
+Drupal.absoluteUrl = function (url) {
+ var urlParsingNode = document.createElement('a');
+
+ // Decode the URL first; this is required by IE <= 6. Decoding non-UTF-8
+ // strings may throw an exception.
+ try {
+ url = decodeURIComponent(url);
+ } catch (e) {}
+
+ urlParsingNode.setAttribute('href', url);
+
+ // IE <= 7 normalizes the URL when assigned to the anchor node similar to
+ // the other browsers.
+ return urlParsingNode.cloneNode(false).href;
+};
+
+/**
+ * Returns true if the URL is within Drupal's base path.
+ *
+ * @param url
+ * The URL string to be tested.
+ *
+ * @return
+ * Boolean true if local.
+ *
+ * @see https://github.com/jquery/jquery-ui/blob/1.11.4/ui/tabs.js#L58
+ */
+Drupal.urlIsLocal = function (url) {
+ // Always use browser-derived absolute URLs in the comparison, to avoid
+ // attempts to break out of the base path using directory traversal.
+ var absoluteUrl = Drupal.absoluteUrl(url);
+ var protocol = location.protocol;
+
+ // Consider URLs that match this site's base URL but use HTTPS instead of HTTP
+ // as local as well.
+ if (protocol === 'http:' && absoluteUrl.indexOf('https:') === 0) {
+ protocol = 'https:';
+ }
+ var baseUrl = protocol + '//' + location.host + Drupal.settings.basePath.slice(0, -1);
+
+ // Decoding non-UTF-8 strings may throw an exception.
+ try {
+ absoluteUrl = decodeURIComponent(absoluteUrl);
+ } catch (e) {}
+ try {
+ baseUrl = decodeURIComponent(baseUrl);
+ } catch (e) {}
+
+ // The given URL matches the site's base URL, or has a path under the site's
+ // base URL.
+ return absoluteUrl === baseUrl || absoluteUrl.indexOf(baseUrl + '/') === 0;
+};
+
+/**
* Generate the themed representation of a Drupal object.
*
* All requests for themed output must go through this function. It examines
diff -Nur drupal-6.38/modules/aggregator/aggregator.info drupal-6.41/modules/aggregator/aggregator.info
--- drupal-6.38/modules/aggregator/aggregator.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/aggregator/aggregator.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/block/block.info drupal-6.41/modules/block/block.info
--- drupal-6.38/modules/block/block.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/block/block.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/blog/blog.info drupal-6.41/modules/blog/blog.info
--- drupal-6.38/modules/blog/blog.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/blog/blog.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/blogapi/blogapi.info drupal-6.41/modules/blogapi/blogapi.info
--- drupal-6.38/modules/blogapi/blogapi.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/blogapi/blogapi.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/book/book.info drupal-6.41/modules/book/book.info
--- drupal-6.38/modules/book/book.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/book/book.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/color/color.info drupal-6.41/modules/color/color.info
--- drupal-6.38/modules/color/color.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/color/color.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/comment/comment.info drupal-6.41/modules/comment/comment.info
--- drupal-6.38/modules/comment/comment.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/comment/comment.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/contact/contact.info drupal-6.41/modules/contact/contact.info
--- drupal-6.38/modules/contact/contact.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/contact/contact.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/dblog/dblog.info drupal-6.41/modules/dblog/dblog.info
--- drupal-6.38/modules/dblog/dblog.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/dblog/dblog.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/filter/filter.info drupal-6.41/modules/filter/filter.info
--- drupal-6.38/modules/filter/filter.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/filter/filter.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/forum/forum.info drupal-6.41/modules/forum/forum.info
--- drupal-6.38/modules/forum/forum.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/forum/forum.info 2018-02-22 10:29:07.000000000 -0600
@@ -6,8 +6,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/help/help.info drupal-6.41/modules/help/help.info
--- drupal-6.38/modules/help/help.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/help/help.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/locale/locale.info drupal-6.41/modules/locale/locale.info
--- drupal-6.38/modules/locale/locale.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/locale/locale.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/menu/menu.info drupal-6.41/modules/menu/menu.info
--- drupal-6.38/modules/menu/menu.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/menu/menu.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/node/node.info drupal-6.41/modules/node/node.info
--- drupal-6.38/modules/node/node.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/node/node.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/openid/openid.info drupal-6.41/modules/openid/openid.info
--- drupal-6.38/modules/openid/openid.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/openid/openid.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
package = Core - optional
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/path/path.info drupal-6.41/modules/path/path.info
--- drupal-6.38/modules/path/path.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/path/path.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/php/php.info drupal-6.41/modules/php/php.info
--- drupal-6.38/modules/php/php.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/php/php.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/ping/ping.info drupal-6.41/modules/ping/ping.info
--- drupal-6.38/modules/ping/ping.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/ping/ping.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/poll/poll.info drupal-6.41/modules/poll/poll.info
--- drupal-6.38/modules/poll/poll.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/poll/poll.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/profile/profile.info drupal-6.41/modules/profile/profile.info
--- drupal-6.38/modules/profile/profile.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/profile/profile.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/search/search.info drupal-6.41/modules/search/search.info
--- drupal-6.38/modules/search/search.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/search/search.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/statistics/statistics.info drupal-6.41/modules/statistics/statistics.info
--- drupal-6.38/modules/statistics/statistics.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/statistics/statistics.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/syslog/syslog.info drupal-6.41/modules/syslog/syslog.info
--- drupal-6.38/modules/syslog/syslog.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/syslog/syslog.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/system/system.info drupal-6.41/modules/system/system.info
--- drupal-6.38/modules/system/system.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/system/system.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/system/system.module drupal-6.41/modules/system/system.module
--- drupal-6.38/modules/system/system.module 2016-02-24 13:20:15.000000000 -0600
+++ drupal-6.41/modules/system/system.module 2018-02-22 10:29:07.000000000 -0600
@@ -8,7 +8,7 @@
/**
* The current system version.
*/
-define('VERSION', '6.38');
+define('VERSION', '6.41');
/**
* Core API compatibility.
diff -Nur drupal-6.38/modules/taxonomy/taxonomy.info drupal-6.41/modules/taxonomy/taxonomy.info
--- drupal-6.38/modules/taxonomy/taxonomy.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/taxonomy/taxonomy.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/throttle/throttle.info drupal-6.41/modules/throttle/throttle.info
--- drupal-6.38/modules/throttle/throttle.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/throttle/throttle.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/tracker/tracker.info drupal-6.41/modules/tracker/tracker.info
--- drupal-6.38/modules/tracker/tracker.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/tracker/tracker.info 2018-02-22 10:29:07.000000000 -0600
@@ -5,8 +5,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/translation/translation.info drupal-6.41/modules/translation/translation.info
--- drupal-6.38/modules/translation/translation.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/translation/translation.info 2018-02-22 10:29:07.000000000 -0600
@@ -5,8 +5,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/trigger/trigger.info drupal-6.41/modules/trigger/trigger.info
--- drupal-6.38/modules/trigger/trigger.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/trigger/trigger.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/update/update.info drupal-6.41/modules/update/update.info
--- drupal-6.38/modules/update/update.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/update/update.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
package = Core - optional
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/upload/upload.info drupal-6.41/modules/upload/upload.info
--- drupal-6.38/modules/upload/upload.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/upload/upload.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/modules/user/user.info drupal-6.41/modules/user/user.info
--- drupal-6.38/modules/user/user.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/modules/user/user.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/themes/bluemarine/bluemarine.info drupal-6.41/themes/bluemarine/bluemarine.info
--- drupal-6.38/themes/bluemarine/bluemarine.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/themes/bluemarine/bluemarine.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
core = 6.x
engine = phptemplate
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/themes/chameleon/chameleon.info drupal-6.41/themes/chameleon/chameleon.info
--- drupal-6.38/themes/chameleon/chameleon.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/themes/chameleon/chameleon.info 2018-02-22 10:29:07.000000000 -0600
@@ -11,8 +11,8 @@
version = VERSION
core = 6.x
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/themes/chameleon/marvin/marvin.info drupal-6.41/themes/chameleon/marvin/marvin.info
--- drupal-6.38/themes/chameleon/marvin/marvin.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/themes/chameleon/marvin/marvin.info 2018-02-22 10:29:07.000000000 -0600
@@ -6,8 +6,8 @@
core = 6.x
base theme = chameleon
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/themes/garland/garland.info drupal-6.41/themes/garland/garland.info
--- drupal-6.38/themes/garland/garland.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/themes/garland/garland.info 2018-02-22 10:29:07.000000000 -0600
@@ -6,8 +6,8 @@
stylesheets[all][] = style.css
stylesheets[print][] = print.css
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/themes/garland/minnelli/minnelli.info drupal-6.41/themes/garland/minnelli/minnelli.info
--- drupal-6.38/themes/garland/minnelli/minnelli.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/themes/garland/minnelli/minnelli.info 2018-02-22 10:29:07.000000000 -0600
@@ -5,8 +5,8 @@
base theme = garland
stylesheets[all][] = minnelli.css
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
diff -Nur drupal-6.38/themes/pushbutton/pushbutton.info drupal-6.41/themes/pushbutton/pushbutton.info
--- drupal-6.38/themes/pushbutton/pushbutton.info 2016-02-24 13:49:32.000000000 -0600
+++ drupal-6.41/themes/pushbutton/pushbutton.info 2018-02-22 10:29:07.000000000 -0600
@@ -4,8 +4,8 @@
core = 6.x
engine = phptemplate
-; Information added by Drupal.org packaging script on 2016-02-24
-version = "6.38"
+; Information added by Drupal 6 LTS vendors on 2018-02-22
+version = "6.41"
+core = "6.x"
project = "drupal"
-datestamp = "1456343372"
-
+datestamp = "1519316916"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment