Advertisement
kervi

Untitled

Mar 28th, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 82.26 KB | None | 0 0
  1. diff --git a/drupal-7.57/CHANGELOG.txt b/drupal-7.58/CHANGELOG.txt
  2. index 90df089..799b800 100644
  3. --- a/drupal-7.57/CHANGELOG.txt
  4. +++ b/drupal-7.58/CHANGELOG.txt
  5. @@ -1,4 +1,8 @@
  6.  
  7. +Drupal 7.58, 2018-03-28
  8. +-----------------------
  9. +- Fixed security issues (multiple vulnerabilities). See SA-CORE-2018-002.
  10. +
  11. Drupal 7.57, 2018-02-21
  12. -----------------------
  13. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2018-001.
  14. diff --git a/drupal-7.57/includes/bootstrap.inc b/drupal-7.58/includes/bootstrap.inc
  15. index 655db6d..06acf93 100644
  16. --- a/drupal-7.57/includes/bootstrap.inc
  17. +++ b/drupal-7.58/includes/bootstrap.inc
  18. @@ -8,7 +8,7 @@
  19. /**
  20. * The current system version.
  21. */
  22. -define('VERSION', '7.57');
  23. +define('VERSION', '7.58');
  24.  
  25. /**
  26. * Core API compatibility.
  27. @@ -2632,6 +2632,10 @@ function _drupal_bootstrap_configuration() {
  28. timer_start('page');
  29. // Initialize the configuration, including variables from settings.php.
  30. drupal_settings_initialize();
  31. +
  32. + // Sanitize unsafe keys from the request.
  33. + require_once DRUPAL_ROOT . '/includes/request-sanitizer.inc';
  34. + DrupalRequestSanitizer::sanitize();
  35. }
  36.  
  37. /**
  38. diff --git a/drupal-7.58/includes/request-sanitizer.inc b/drupal-7.58/includes/request-sanitizer.inc
  39. new file mode 100644
  40. index 0000000..1daa6b5
  41. --- /dev/null
  42. +++ b/drupal-7.58/includes/request-sanitizer.inc
  43. @@ -0,0 +1,82 @@
  44. +<?php
  45. +
  46. +/**
  47. + * @file
  48. + * Contains code for sanitizing user input from the request.
  49. + */
  50. +
  51. +/**
  52. + * Sanitizes user input from the request.
  53. + */
  54. +class DrupalRequestSanitizer {
  55. +
  56. + /**
  57. + * Tracks whether the request was already sanitized.
  58. + */
  59. + protected static $sanitized = FALSE;
  60. +
  61. + /**
  62. + * Modifies the request to strip dangerous keys from user input.
  63. + */
  64. + public static function sanitize() {
  65. + if (!self::$sanitized) {
  66. + $whitelist = variable_get('sanitize_input_whitelist', array());
  67. + $log_sanitized_keys = variable_get('sanitize_input_logging', FALSE);
  68. +
  69. + // Process query string parameters.
  70. + $get_sanitized_keys = array();
  71. + $_GET = self::stripDangerousValues($_GET, $whitelist, $get_sanitized_keys);
  72. + if ($log_sanitized_keys && $get_sanitized_keys) {
  73. + _drupal_trigger_error_with_delayed_logging(format_string('Potentially unsafe keys removed from query string parameters (GET): @keys', array('@keys' => implode(', ', $get_sanitized_keys))), E_USER_NOTICE);
  74. + }
  75. +
  76. + // Process request body parameters.
  77. + $post_sanitized_keys = array();
  78. + $_POST = self::stripDangerousValues($_POST, $whitelist, $post_sanitized_keys);
  79. + if ($log_sanitized_keys && $post_sanitized_keys) {
  80. + _drupal_trigger_error_with_delayed_logging(format_string('Potentially unsafe keys removed from request body parameters (POST): @keys', array('@keys' => implode(', ', $post_sanitized_keys))), E_USER_NOTICE);
  81. + }
  82. +
  83. + // Process cookie parameters.
  84. + $cookie_sanitized_keys = array();
  85. + $_COOKIE = self::stripDangerousValues($_COOKIE, $whitelist, $cookie_sanitized_keys);
  86. + if ($log_sanitized_keys && $cookie_sanitized_keys) {
  87. + _drupal_trigger_error_with_delayed_logging(format_string('Potentially unsafe keys removed from cookie parameters (COOKIE): @keys', array('@keys' => implode(', ', $cookie_sanitized_keys))), E_USER_NOTICE);
  88. + }
  89. +
  90. + $request_sanitized_keys = array();
  91. + $_REQUEST = self::stripDangerousValues($_REQUEST, $whitelist, $request_sanitized_keys);
  92. +
  93. + self::$sanitized = TRUE;
  94. + }
  95. + }
  96. +
  97. + /**
  98. + * Strips dangerous keys from the provided input.
  99. + *
  100. + * @param mixed $input
  101. + * The input to sanitize.
  102. + * @param string[] $whitelist
  103. + * An array of keys to whitelist as safe.
  104. + * @param string[] $sanitized_keys
  105. + * An array of keys that have been removed.
  106. + *
  107. + * @return mixed
  108. + * The sanitized input.
  109. + */
  110. + protected static function stripDangerousValues($input, array $whitelist, array &$sanitized_keys) {
  111. + if (is_array($input)) {
  112. + foreach ($input as $key => $value) {
  113. + if ($key !== '' && $key[0] === '#' && !in_array($key, $whitelist, TRUE)) {
  114. + unset($input[$key]);
  115. + $sanitized_keys[] = $key;
  116. + }
  117. + else {
  118. + $input[$key] = self::stripDangerousValues($input[$key], $whitelist, $sanitized_keys);
  119. + }
  120. + }
  121. + }
  122. + return $input;
  123. + }
  124. +
  125. +}
  126. diff --git a/drupal-7.57/modules/aggregator/aggregator.info b/drupal-7.58/modules/aggregator/aggregator.info
  127. index 85b9214..e8645d1 100644
  128. --- a/drupal-7.57/modules/aggregator/aggregator.info
  129. +++ b/drupal-7.58/modules/aggregator/aggregator.info
  130. @@ -7,8 +7,8 @@ files[] = aggregator.test
  131. configure = admin/config/services/aggregator/settings
  132. stylesheets[all][] = aggregator.css
  133.  
  134. -; Information added by Drupal.org packaging script on 2018-02-21
  135. -version = "7.57"
  136. +; Information added by Drupal.org packaging script on 2018-03-28
  137. +version = "7.58"
  138. project = "drupal"
  139. -datestamp = "1519235152"
  140. +datestamp = "1522264019"
  141.  
  142. diff --git a/drupal-7.57/modules/aggregator/tests/aggregator_test.info b/drupal-7.58/modules/aggregator/tests/aggregator_test.info
  143. index 6cb030a..e6d5a0a 100644
  144. --- a/drupal-7.57/modules/aggregator/tests/aggregator_test.info
  145. +++ b/drupal-7.58/modules/aggregator/tests/aggregator_test.info
  146. @@ -5,8 +5,8 @@ version = VERSION
  147. core = 7.x
  148. hidden = TRUE
  149.  
  150. -; Information added by Drupal.org packaging script on 2018-02-21
  151. -version = "7.57"
  152. +; Information added by Drupal.org packaging script on 2018-03-28
  153. +version = "7.58"
  154. project = "drupal"
  155. -datestamp = "1519235152"
  156. +datestamp = "1522264019"
  157.  
  158. diff --git a/drupal-7.57/modules/block/block.info b/drupal-7.58/modules/block/block.info
  159. index 1e3043c..934bfde 100644
  160. --- a/drupal-7.57/modules/block/block.info
  161. +++ b/drupal-7.58/modules/block/block.info
  162. @@ -6,8 +6,8 @@ core = 7.x
  163. files[] = block.test
  164. configure = admin/structure/block
  165.  
  166. -; Information added by Drupal.org packaging script on 2018-02-21
  167. -version = "7.57"
  168. +; Information added by Drupal.org packaging script on 2018-03-28
  169. +version = "7.58"
  170. project = "drupal"
  171. -datestamp = "1519235152"
  172. +datestamp = "1522264019"
  173.  
  174. diff --git a/drupal-7.57/modules/block/tests/block_test.info b/drupal-7.58/modules/block/tests/block_test.info
  175. index 6e9b4ff..d7e2220 100644
  176. --- a/drupal-7.57/modules/block/tests/block_test.info
  177. +++ b/drupal-7.58/modules/block/tests/block_test.info
  178. @@ -5,8 +5,8 @@ version = VERSION
  179. core = 7.x
  180. hidden = TRUE
  181.  
  182. -; Information added by Drupal.org packaging script on 2018-02-21
  183. -version = "7.57"
  184. +; Information added by Drupal.org packaging script on 2018-03-28
  185. +version = "7.58"
  186. project = "drupal"
  187. -datestamp = "1519235152"
  188. +datestamp = "1522264019"
  189.  
  190. diff --git a/drupal-7.57/modules/block/tests/themes/block_test_theme/block_test_theme.info b/drupal-7.58/modules/block/tests/themes/block_test_theme/block_test_theme.info
  191. index 9b3c398..31b4382 100644
  192. --- a/drupal-7.57/modules/block/tests/themes/block_test_theme/block_test_theme.info
  193. +++ b/drupal-7.58/modules/block/tests/themes/block_test_theme/block_test_theme.info
  194. @@ -13,8 +13,8 @@ regions[footer] = Footer
  195. regions[highlighted] = Highlighted
  196. regions[help] = Help
  197.  
  198. -; Information added by Drupal.org packaging script on 2018-02-21
  199. -version = "7.57"
  200. +; Information added by Drupal.org packaging script on 2018-03-28
  201. +version = "7.58"
  202. project = "drupal"
  203. -datestamp = "1519235152"
  204. +datestamp = "1522264019"
  205.  
  206. diff --git a/drupal-7.57/modules/blog/blog.info b/drupal-7.58/modules/blog/blog.info
  207. index 072c0b7..84ad946 100644
  208. --- a/drupal-7.57/modules/blog/blog.info
  209. +++ b/drupal-7.58/modules/blog/blog.info
  210. @@ -5,8 +5,8 @@ version = VERSION
  211. core = 7.x
  212. files[] = blog.test
  213.  
  214. -; Information added by Drupal.org packaging script on 2018-02-21
  215. -version = "7.57"
  216. +; Information added by Drupal.org packaging script on 2018-03-28
  217. +version = "7.58"
  218. project = "drupal"
  219. -datestamp = "1519235152"
  220. +datestamp = "1522264019"
  221.  
  222. diff --git a/drupal-7.57/modules/book/book.info b/drupal-7.58/modules/book/book.info
  223. index 6d456db..53e454b 100644
  224. --- a/drupal-7.57/modules/book/book.info
  225. +++ b/drupal-7.58/modules/book/book.info
  226. @@ -7,8 +7,8 @@ files[] = book.test
  227. configure = admin/content/book/settings
  228. stylesheets[all][] = book.css
  229.  
  230. -; Information added by Drupal.org packaging script on 2018-02-21
  231. -version = "7.57"
  232. +; Information added by Drupal.org packaging script on 2018-03-28
  233. +version = "7.58"
  234. project = "drupal"
  235. -datestamp = "1519235152"
  236. +datestamp = "1522264019"
  237.  
  238. diff --git a/drupal-7.57/modules/color/color.info b/drupal-7.58/modules/color/color.info
  239. index 2a42b8c..0d17ce1 100644
  240. --- a/drupal-7.57/modules/color/color.info
  241. +++ b/drupal-7.58/modules/color/color.info
  242. @@ -5,8 +5,8 @@ version = VERSION
  243. core = 7.x
  244. files[] = color.test
  245.  
  246. -; Information added by Drupal.org packaging script on 2018-02-21
  247. -version = "7.57"
  248. +; Information added by Drupal.org packaging script on 2018-03-28
  249. +version = "7.58"
  250. project = "drupal"
  251. -datestamp = "1519235152"
  252. +datestamp = "1522264019"
  253.  
  254. diff --git a/drupal-7.57/modules/comment/comment.info b/drupal-7.58/modules/comment/comment.info
  255. index 74a1632..5d5abbf 100644
  256. --- a/drupal-7.57/modules/comment/comment.info
  257. +++ b/drupal-7.58/modules/comment/comment.info
  258. @@ -9,8 +9,8 @@ files[] = comment.test
  259. configure = admin/content/comment
  260. stylesheets[all][] = comment.css
  261.  
  262. -; Information added by Drupal.org packaging script on 2018-02-21
  263. -version = "7.57"
  264. +; Information added by Drupal.org packaging script on 2018-03-28
  265. +version = "7.58"
  266. project = "drupal"
  267. -datestamp = "1519235152"
  268. +datestamp = "1522264019"
  269.  
  270. diff --git a/drupal-7.57/modules/contact/contact.info b/drupal-7.58/modules/contact/contact.info
  271. index 01d33e2..b365daf 100644
  272. --- a/drupal-7.57/modules/contact/contact.info
  273. +++ b/drupal-7.58/modules/contact/contact.info
  274. @@ -6,8 +6,8 @@ core = 7.x
  275. files[] = contact.test
  276. configure = admin/structure/contact
  277.  
  278. -; Information added by Drupal.org packaging script on 2018-02-21
  279. -version = "7.57"
  280. +; Information added by Drupal.org packaging script on 2018-03-28
  281. +version = "7.58"
  282. project = "drupal"
  283. -datestamp = "1519235152"
  284. +datestamp = "1522264019"
  285.  
  286. diff --git a/drupal-7.57/modules/contextual/contextual.info b/drupal-7.58/modules/contextual/contextual.info
  287. index acc34d5..ba47a4c 100644
  288. --- a/drupal-7.57/modules/contextual/contextual.info
  289. +++ b/drupal-7.58/modules/contextual/contextual.info
  290. @@ -5,8 +5,8 @@ version = VERSION
  291. core = 7.x
  292. files[] = contextual.test
  293.  
  294. -; Information added by Drupal.org packaging script on 2018-02-21
  295. -version = "7.57"
  296. +; Information added by Drupal.org packaging script on 2018-03-28
  297. +version = "7.58"
  298. project = "drupal"
  299. -datestamp = "1519235152"
  300. +datestamp = "1522264019"
  301.  
  302. diff --git a/drupal-7.57/modules/dashboard/dashboard.info b/drupal-7.58/modules/dashboard/dashboard.info
  303. index 43ba992..d6e9866 100644
  304. --- a/drupal-7.57/modules/dashboard/dashboard.info
  305. +++ b/drupal-7.58/modules/dashboard/dashboard.info
  306. @@ -7,8 +7,8 @@ files[] = dashboard.test
  307. dependencies[] = block
  308. configure = admin/dashboard/customize
  309.  
  310. -; Information added by Drupal.org packaging script on 2018-02-21
  311. -version = "7.57"
  312. +; Information added by Drupal.org packaging script on 2018-03-28
  313. +version = "7.58"
  314. project = "drupal"
  315. -datestamp = "1519235152"
  316. +datestamp = "1522264019"
  317.  
  318. diff --git a/drupal-7.57/modules/dblog/dblog.info b/drupal-7.58/modules/dblog/dblog.info
  319. index ef41f85..cb85f81 100644
  320. --- a/drupal-7.57/modules/dblog/dblog.info
  321. +++ b/drupal-7.58/modules/dblog/dblog.info
  322. @@ -5,8 +5,8 @@ version = VERSION
  323. core = 7.x
  324. files[] = dblog.test
  325.  
  326. -; Information added by Drupal.org packaging script on 2018-02-21
  327. -version = "7.57"
  328. +; Information added by Drupal.org packaging script on 2018-03-28
  329. +version = "7.58"
  330. project = "drupal"
  331. -datestamp = "1519235152"
  332. +datestamp = "1522264019"
  333.  
  334. diff --git a/drupal-7.57/modules/field/field.info b/drupal-7.58/modules/field/field.info
  335. index adeffba..e05108e 100644
  336. --- a/drupal-7.57/modules/field/field.info
  337. +++ b/drupal-7.58/modules/field/field.info
  338. @@ -11,8 +11,8 @@ dependencies[] = field_sql_storage
  339. required = TRUE
  340. stylesheets[all][] = theme/field.css
  341.  
  342. -; Information added by Drupal.org packaging script on 2018-02-21
  343. -version = "7.57"
  344. +; Information added by Drupal.org packaging script on 2018-03-28
  345. +version = "7.58"
  346. project = "drupal"
  347. -datestamp = "1519235152"
  348. +datestamp = "1522264019"
  349.  
  350. diff --git a/drupal-7.57/modules/field/modules/field_sql_storage/field_sql_storage.info b/drupal-7.58/modules/field/modules/field_sql_storage/field_sql_storage.info
  351. index 1fd1601..0543461 100644
  352. --- a/drupal-7.57/modules/field/modules/field_sql_storage/field_sql_storage.info
  353. +++ b/drupal-7.58/modules/field/modules/field_sql_storage/field_sql_storage.info
  354. @@ -7,8 +7,8 @@ dependencies[] = field
  355. files[] = field_sql_storage.test
  356. required = TRUE
  357.  
  358. -; Information added by Drupal.org packaging script on 2018-02-21
  359. -version = "7.57"
  360. +; Information added by Drupal.org packaging script on 2018-03-28
  361. +version = "7.58"
  362. project = "drupal"
  363. -datestamp = "1519235152"
  364. +datestamp = "1522264019"
  365.  
  366. diff --git a/drupal-7.57/modules/field/modules/list/list.info b/drupal-7.58/modules/field/modules/list/list.info
  367. index 89db074..bef7e4a 100644
  368. --- a/drupal-7.57/modules/field/modules/list/list.info
  369. +++ b/drupal-7.58/modules/field/modules/list/list.info
  370. @@ -7,8 +7,8 @@ dependencies[] = field
  371. dependencies[] = options
  372. files[] = tests/list.test
  373.  
  374. -; Information added by Drupal.org packaging script on 2018-02-21
  375. -version = "7.57"
  376. +; Information added by Drupal.org packaging script on 2018-03-28
  377. +version = "7.58"
  378. project = "drupal"
  379. -datestamp = "1519235152"
  380. +datestamp = "1522264019"
  381.  
  382. diff --git a/drupal-7.57/modules/field/modules/list/tests/list_test.info b/drupal-7.58/modules/field/modules/list/tests/list_test.info
  383. index 20854f1..2d4d6cc 100644
  384. --- a/drupal-7.57/modules/field/modules/list/tests/list_test.info
  385. +++ b/drupal-7.58/modules/field/modules/list/tests/list_test.info
  386. @@ -5,8 +5,8 @@ package = Testing
  387. version = VERSION
  388. hidden = TRUE
  389.  
  390. -; Information added by Drupal.org packaging script on 2018-02-21
  391. -version = "7.57"
  392. +; Information added by Drupal.org packaging script on 2018-03-28
  393. +version = "7.58"
  394. project = "drupal"
  395. -datestamp = "1519235152"
  396. +datestamp = "1522264019"
  397.  
  398. diff --git a/drupal-7.57/modules/field/modules/number/number.info b/drupal-7.58/modules/field/modules/number/number.info
  399. index ad083ba..c65d94a 100644
  400. --- a/drupal-7.57/modules/field/modules/number/number.info
  401. +++ b/drupal-7.58/modules/field/modules/number/number.info
  402. @@ -6,8 +6,8 @@ core = 7.x
  403. dependencies[] = field
  404. files[] = number.test
  405.  
  406. -; Information added by Drupal.org packaging script on 2018-02-21
  407. -version = "7.57"
  408. +; Information added by Drupal.org packaging script on 2018-03-28
  409. +version = "7.58"
  410. project = "drupal"
  411. -datestamp = "1519235152"
  412. +datestamp = "1522264019"
  413.  
  414. diff --git a/drupal-7.57/modules/field/modules/options/options.info b/drupal-7.58/modules/field/modules/options/options.info
  415. index dec3353..632ca24 100644
  416. --- a/drupal-7.57/modules/field/modules/options/options.info
  417. +++ b/drupal-7.58/modules/field/modules/options/options.info
  418. @@ -6,8 +6,8 @@ core = 7.x
  419. dependencies[] = field
  420. files[] = options.test
  421.  
  422. -; Information added by Drupal.org packaging script on 2018-02-21
  423. -version = "7.57"
  424. +; Information added by Drupal.org packaging script on 2018-03-28
  425. +version = "7.58"
  426. project = "drupal"
  427. -datestamp = "1519235152"
  428. +datestamp = "1522264019"
  429.  
  430. diff --git a/drupal-7.57/modules/field/modules/text/text.info b/drupal-7.58/modules/field/modules/text/text.info
  431. index 9210044..fe93a35 100644
  432. --- a/drupal-7.57/modules/field/modules/text/text.info
  433. +++ b/drupal-7.58/modules/field/modules/text/text.info
  434. @@ -7,8 +7,8 @@ dependencies[] = field
  435. files[] = text.test
  436. required = TRUE
  437.  
  438. -; Information added by Drupal.org packaging script on 2018-02-21
  439. -version = "7.57"
  440. +; Information added by Drupal.org packaging script on 2018-03-28
  441. +version = "7.58"
  442. project = "drupal"
  443. -datestamp = "1519235152"
  444. +datestamp = "1522264019"
  445.  
  446. diff --git a/drupal-7.57/modules/field/tests/field_test.info b/drupal-7.58/modules/field/tests/field_test.info
  447. index 1457feb..ce3c725 100644
  448. --- a/drupal-7.57/modules/field/tests/field_test.info
  449. +++ b/drupal-7.58/modules/field/tests/field_test.info
  450. @@ -6,8 +6,8 @@ files[] = field_test.entity.inc
  451. version = VERSION
  452. hidden = TRUE
  453.  
  454. -; Information added by Drupal.org packaging script on 2018-02-21
  455. -version = "7.57"
  456. +; Information added by Drupal.org packaging script on 2018-03-28
  457. +version = "7.58"
  458. project = "drupal"
  459. -datestamp = "1519235152"
  460. +datestamp = "1522264019"
  461.  
  462. diff --git a/drupal-7.57/modules/field_ui/field_ui.info b/drupal-7.58/modules/field_ui/field_ui.info
  463. index 2d62a50..a415ae9 100644
  464. --- a/drupal-7.57/modules/field_ui/field_ui.info
  465. +++ b/drupal-7.58/modules/field_ui/field_ui.info
  466. @@ -6,8 +6,8 @@ core = 7.x
  467. dependencies[] = field
  468. files[] = field_ui.test
  469.  
  470. -; Information added by Drupal.org packaging script on 2018-02-21
  471. -version = "7.57"
  472. +; Information added by Drupal.org packaging script on 2018-03-28
  473. +version = "7.58"
  474. project = "drupal"
  475. -datestamp = "1519235152"
  476. +datestamp = "1522264019"
  477.  
  478. diff --git a/drupal-7.57/modules/file/file.info b/drupal-7.58/modules/file/file.info
  479. index 681a92e..7269b4a 100644
  480. --- a/drupal-7.57/modules/file/file.info
  481. +++ b/drupal-7.58/modules/file/file.info
  482. @@ -6,8 +6,8 @@ core = 7.x
  483. dependencies[] = field
  484. files[] = tests/file.test
  485.  
  486. -; Information added by Drupal.org packaging script on 2018-02-21
  487. -version = "7.57"
  488. +; Information added by Drupal.org packaging script on 2018-03-28
  489. +version = "7.58"
  490. project = "drupal"
  491. -datestamp = "1519235152"
  492. +datestamp = "1522264019"
  493.  
  494. diff --git a/drupal-7.57/modules/file/tests/file_module_test.info b/drupal-7.58/modules/file/tests/file_module_test.info
  495. index 05ffab7..958bf66 100644
  496. --- a/drupal-7.57/modules/file/tests/file_module_test.info
  497. +++ b/drupal-7.58/modules/file/tests/file_module_test.info
  498. @@ -5,8 +5,8 @@ version = VERSION
  499. core = 7.x
  500. hidden = TRUE
  501.  
  502. -; Information added by Drupal.org packaging script on 2018-02-21
  503. -version = "7.57"
  504. +; Information added by Drupal.org packaging script on 2018-03-28
  505. +version = "7.58"
  506. project = "drupal"
  507. -datestamp = "1519235152"
  508. +datestamp = "1522264019"
  509.  
  510. diff --git a/drupal-7.57/modules/filter/filter.info b/drupal-7.58/modules/filter/filter.info
  511. index 5ec13e2..4a46c85 100644
  512. --- a/drupal-7.57/modules/filter/filter.info
  513. +++ b/drupal-7.58/modules/filter/filter.info
  514. @@ -7,8 +7,8 @@ files[] = filter.test
  515. required = TRUE
  516. configure = admin/config/content/formats
  517.  
  518. -; Information added by Drupal.org packaging script on 2018-02-21
  519. -version = "7.57"
  520. +; Information added by Drupal.org packaging script on 2018-03-28
  521. +version = "7.58"
  522. project = "drupal"
  523. -datestamp = "1519235152"
  524. +datestamp = "1522264019"
  525.  
  526. diff --git a/drupal-7.57/modules/forum/forum.info b/drupal-7.58/modules/forum/forum.info
  527. index 9849f1e..d5b1c76 100644
  528. --- a/drupal-7.57/modules/forum/forum.info
  529. +++ b/drupal-7.58/modules/forum/forum.info
  530. @@ -9,8 +9,8 @@ files[] = forum.test
  531. configure = admin/structure/forum
  532. stylesheets[all][] = forum.css
  533.  
  534. -; Information added by Drupal.org packaging script on 2018-02-21
  535. -version = "7.57"
  536. +; Information added by Drupal.org packaging script on 2018-03-28
  537. +version = "7.58"
  538. project = "drupal"
  539. -datestamp = "1519235152"
  540. +datestamp = "1522264019"
  541.  
  542. diff --git a/drupal-7.57/modules/help/help.info b/drupal-7.58/modules/help/help.info
  543. index bf1aa89..2c851ea 100644
  544. --- a/drupal-7.57/modules/help/help.info
  545. +++ b/drupal-7.58/modules/help/help.info
  546. @@ -5,8 +5,8 @@ version = VERSION
  547. core = 7.x
  548. files[] = help.test
  549.  
  550. -; Information added by Drupal.org packaging script on 2018-02-21
  551. -version = "7.57"
  552. +; Information added by Drupal.org packaging script on 2018-03-28
  553. +version = "7.58"
  554. project = "drupal"
  555. -datestamp = "1519235152"
  556. +datestamp = "1522264019"
  557.  
  558. diff --git a/drupal-7.57/modules/image/image.info b/drupal-7.58/modules/image/image.info
  559. index 1641fea..dd1200c 100644
  560. --- a/drupal-7.57/modules/image/image.info
  561. +++ b/drupal-7.58/modules/image/image.info
  562. @@ -7,8 +7,8 @@ dependencies[] = file
  563. files[] = image.test
  564. configure = admin/config/media/image-styles
  565.  
  566. -; Information added by Drupal.org packaging script on 2018-02-21
  567. -version = "7.57"
  568. +; Information added by Drupal.org packaging script on 2018-03-28
  569. +version = "7.58"
  570. project = "drupal"
  571. -datestamp = "1519235152"
  572. +datestamp = "1522264019"
  573.  
  574. diff --git a/drupal-7.57/modules/image/tests/image_module_test.info b/drupal-7.58/modules/image/tests/image_module_test.info
  575. index 30b54fa..c6b3a6a 100644
  576. --- a/drupal-7.57/modules/image/tests/image_module_test.info
  577. +++ b/drupal-7.58/modules/image/tests/image_module_test.info
  578. @@ -6,8 +6,8 @@ core = 7.x
  579. files[] = image_module_test.module
  580. hidden = TRUE
  581.  
  582. -; Information added by Drupal.org packaging script on 2018-02-21
  583. -version = "7.57"
  584. +; Information added by Drupal.org packaging script on 2018-03-28
  585. +version = "7.58"
  586. project = "drupal"
  587. -datestamp = "1519235152"
  588. +datestamp = "1522264019"
  589.  
  590. diff --git a/drupal-7.57/modules/locale/locale.info b/drupal-7.58/modules/locale/locale.info
  591. index 3c72d84..674d1f5 100644
  592. --- a/drupal-7.57/modules/locale/locale.info
  593. +++ b/drupal-7.58/modules/locale/locale.info
  594. @@ -6,8 +6,8 @@ core = 7.x
  595. files[] = locale.test
  596. configure = admin/config/regional/language
  597.  
  598. -; Information added by Drupal.org packaging script on 2018-02-21
  599. -version = "7.57"
  600. +; Information added by Drupal.org packaging script on 2018-03-28
  601. +version = "7.58"
  602. project = "drupal"
  603. -datestamp = "1519235152"
  604. +datestamp = "1522264019"
  605.  
  606. diff --git a/drupal-7.57/modules/locale/tests/locale_test.info b/drupal-7.58/modules/locale/tests/locale_test.info
  607. index 3ee6ba9..49da5e5 100644
  608. --- a/drupal-7.57/modules/locale/tests/locale_test.info
  609. +++ b/drupal-7.58/modules/locale/tests/locale_test.info
  610. @@ -5,8 +5,8 @@ package = Testing
  611. version = VERSION
  612. hidden = TRUE
  613.  
  614. -; Information added by Drupal.org packaging script on 2018-02-21
  615. -version = "7.57"
  616. +; Information added by Drupal.org packaging script on 2018-03-28
  617. +version = "7.58"
  618. project = "drupal"
  619. -datestamp = "1519235152"
  620. +datestamp = "1522264019"
  621.  
  622. diff --git a/drupal-7.57/modules/menu/menu.info b/drupal-7.58/modules/menu/menu.info
  623. index 2487a72..9b7ef57 100644
  624. --- a/drupal-7.57/modules/menu/menu.info
  625. +++ b/drupal-7.58/modules/menu/menu.info
  626. @@ -6,8 +6,8 @@ core = 7.x
  627. files[] = menu.test
  628. configure = admin/structure/menu
  629.  
  630. -; Information added by Drupal.org packaging script on 2018-02-21
  631. -version = "7.57"
  632. +; Information added by Drupal.org packaging script on 2018-03-28
  633. +version = "7.58"
  634. project = "drupal"
  635. -datestamp = "1519235152"
  636. +datestamp = "1522264019"
  637.  
  638. diff --git a/drupal-7.57/modules/node/node.info b/drupal-7.58/modules/node/node.info
  639. index 1947bb4..11ae2cd 100644
  640. --- a/drupal-7.57/modules/node/node.info
  641. +++ b/drupal-7.58/modules/node/node.info
  642. @@ -9,8 +9,8 @@ required = TRUE
  643. configure = admin/structure/types
  644. stylesheets[all][] = node.css
  645.  
  646. -; Information added by Drupal.org packaging script on 2018-02-21
  647. -version = "7.57"
  648. +; Information added by Drupal.org packaging script on 2018-03-28
  649. +version = "7.58"
  650. project = "drupal"
  651. -datestamp = "1519235152"
  652. +datestamp = "1522264019"
  653.  
  654. diff --git a/drupal-7.57/modules/node/tests/node_access_test.info b/drupal-7.58/modules/node/tests/node_access_test.info
  655. index e5cb904..0079290 100644
  656. --- a/drupal-7.57/modules/node/tests/node_access_test.info
  657. +++ b/drupal-7.58/modules/node/tests/node_access_test.info
  658. @@ -5,8 +5,8 @@ version = VERSION
  659. core = 7.x
  660. hidden = TRUE
  661.  
  662. -; Information added by Drupal.org packaging script on 2018-02-21
  663. -version = "7.57"
  664. +; Information added by Drupal.org packaging script on 2018-03-28
  665. +version = "7.58"
  666. project = "drupal"
  667. -datestamp = "1519235152"
  668. +datestamp = "1522264019"
  669.  
  670. diff --git a/drupal-7.57/modules/node/tests/node_test.info b/drupal-7.58/modules/node/tests/node_test.info
  671. index ba7db35..f56e2e5 100644
  672. --- a/drupal-7.57/modules/node/tests/node_test.info
  673. +++ b/drupal-7.58/modules/node/tests/node_test.info
  674. @@ -5,8 +5,8 @@ version = VERSION
  675. core = 7.x
  676. hidden = TRUE
  677.  
  678. -; Information added by Drupal.org packaging script on 2018-02-21
  679. -version = "7.57"
  680. +; Information added by Drupal.org packaging script on 2018-03-28
  681. +version = "7.58"
  682. project = "drupal"
  683. -datestamp = "1519235152"
  684. +datestamp = "1522264019"
  685.  
  686. diff --git a/drupal-7.57/modules/node/tests/node_test_exception.info b/drupal-7.58/modules/node/tests/node_test_exception.info
  687. index 18e6c43..a4c1185 100644
  688. --- a/drupal-7.57/modules/node/tests/node_test_exception.info
  689. +++ b/drupal-7.58/modules/node/tests/node_test_exception.info
  690. @@ -5,8 +5,8 @@ version = VERSION
  691. core = 7.x
  692. hidden = TRUE
  693.  
  694. -; Information added by Drupal.org packaging script on 2018-02-21
  695. -version = "7.57"
  696. +; Information added by Drupal.org packaging script on 2018-03-28
  697. +version = "7.58"
  698. project = "drupal"
  699. -datestamp = "1519235152"
  700. +datestamp = "1522264019"
  701.  
  702. diff --git a/drupal-7.57/modules/openid/openid.info b/drupal-7.58/modules/openid/openid.info
  703. index 6818f8b..69d2663 100644
  704. --- a/drupal-7.57/modules/openid/openid.info
  705. +++ b/drupal-7.58/modules/openid/openid.info
  706. @@ -5,8 +5,8 @@ package = Core
  707. core = 7.x
  708. files[] = openid.test
  709.  
  710. -; Information added by Drupal.org packaging script on 2018-02-21
  711. -version = "7.57"
  712. +; Information added by Drupal.org packaging script on 2018-03-28
  713. +version = "7.58"
  714. project = "drupal"
  715. -datestamp = "1519235152"
  716. +datestamp = "1522264019"
  717.  
  718. diff --git a/drupal-7.57/modules/openid/tests/openid_test.info b/drupal-7.58/modules/openid/tests/openid_test.info
  719. index f933e84..7186198 100644
  720. --- a/drupal-7.57/modules/openid/tests/openid_test.info
  721. +++ b/drupal-7.58/modules/openid/tests/openid_test.info
  722. @@ -6,8 +6,8 @@ core = 7.x
  723. dependencies[] = openid
  724. hidden = TRUE
  725.  
  726. -; Information added by Drupal.org packaging script on 2018-02-21
  727. -version = "7.57"
  728. +; Information added by Drupal.org packaging script on 2018-03-28
  729. +version = "7.58"
  730. project = "drupal"
  731. -datestamp = "1519235152"
  732. +datestamp = "1522264019"
  733.  
  734. diff --git a/drupal-7.57/modules/overlay/overlay.info b/drupal-7.58/modules/overlay/overlay.info
  735. index 827df82..1bf7e9e 100644
  736. --- a/drupal-7.57/modules/overlay/overlay.info
  737. +++ b/drupal-7.58/modules/overlay/overlay.info
  738. @@ -4,8 +4,8 @@ package = Core
  739. version = VERSION
  740. core = 7.x
  741.  
  742. -; Information added by Drupal.org packaging script on 2018-02-21
  743. -version = "7.57"
  744. +; Information added by Drupal.org packaging script on 2018-03-28
  745. +version = "7.58"
  746. project = "drupal"
  747. -datestamp = "1519235152"
  748. +datestamp = "1522264019"
  749.  
  750. diff --git a/drupal-7.57/modules/path/path.info b/drupal-7.58/modules/path/path.info
  751. index 3272354..b5b0eb9 100644
  752. --- a/drupal-7.57/modules/path/path.info
  753. +++ b/drupal-7.58/modules/path/path.info
  754. @@ -6,8 +6,8 @@ core = 7.x
  755. files[] = path.test
  756. configure = admin/config/search/path
  757.  
  758. -; Information added by Drupal.org packaging script on 2018-02-21
  759. -version = "7.57"
  760. +; Information added by Drupal.org packaging script on 2018-03-28
  761. +version = "7.58"
  762. project = "drupal"
  763. -datestamp = "1519235152"
  764. +datestamp = "1522264019"
  765.  
  766. diff --git a/drupal-7.57/modules/php/php.info b/drupal-7.58/modules/php/php.info
  767. index 260ab47..236f931 100644
  768. --- a/drupal-7.57/modules/php/php.info
  769. +++ b/drupal-7.58/modules/php/php.info
  770. @@ -5,8 +5,8 @@ version = VERSION
  771. core = 7.x
  772. files[] = php.test
  773.  
  774. -; Information added by Drupal.org packaging script on 2018-02-21
  775. -version = "7.57"
  776. +; Information added by Drupal.org packaging script on 2018-03-28
  777. +version = "7.58"
  778. project = "drupal"
  779. -datestamp = "1519235152"
  780. +datestamp = "1522264019"
  781.  
  782. diff --git a/drupal-7.57/modules/poll/poll.info b/drupal-7.58/modules/poll/poll.info
  783. index 36ff2e9..eeed31d 100644
  784. --- a/drupal-7.57/modules/poll/poll.info
  785. +++ b/drupal-7.58/modules/poll/poll.info
  786. @@ -6,8 +6,8 @@ core = 7.x
  787. files[] = poll.test
  788. stylesheets[all][] = poll.css
  789.  
  790. -; Information added by Drupal.org packaging script on 2018-02-21
  791. -version = "7.57"
  792. +; Information added by Drupal.org packaging script on 2018-03-28
  793. +version = "7.58"
  794. project = "drupal"
  795. -datestamp = "1519235152"
  796. +datestamp = "1522264019"
  797.  
  798. diff --git a/drupal-7.57/modules/profile/profile.info b/drupal-7.58/modules/profile/profile.info
  799. index 00f8633..1480c61 100644
  800. --- a/drupal-7.57/modules/profile/profile.info
  801. +++ b/drupal-7.58/modules/profile/profile.info
  802. @@ -11,8 +11,8 @@ configure = admin/config/people/profile
  803. ; See user_system_info_alter().
  804. hidden = TRUE
  805.  
  806. -; Information added by Drupal.org packaging script on 2018-02-21
  807. -version = "7.57"
  808. +; Information added by Drupal.org packaging script on 2018-03-28
  809. +version = "7.58"
  810. project = "drupal"
  811. -datestamp = "1519235152"
  812. +datestamp = "1522264019"
  813.  
  814. diff --git a/drupal-7.57/modules/rdf/rdf.info b/drupal-7.58/modules/rdf/rdf.info
  815. index 4cf3819..18e6297 100644
  816. --- a/drupal-7.57/modules/rdf/rdf.info
  817. +++ b/drupal-7.58/modules/rdf/rdf.info
  818. @@ -5,8 +5,8 @@ version = VERSION
  819. core = 7.x
  820. files[] = rdf.test
  821.  
  822. -; Information added by Drupal.org packaging script on 2018-02-21
  823. -version = "7.57"
  824. +; Information added by Drupal.org packaging script on 2018-03-28
  825. +version = "7.58"
  826. project = "drupal"
  827. -datestamp = "1519235152"
  828. +datestamp = "1522264019"
  829.  
  830. diff --git a/drupal-7.57/modules/rdf/tests/rdf_test.info b/drupal-7.58/modules/rdf/tests/rdf_test.info
  831. index 8b310ff..a302a7b 100644
  832. --- a/drupal-7.57/modules/rdf/tests/rdf_test.info
  833. +++ b/drupal-7.58/modules/rdf/tests/rdf_test.info
  834. @@ -6,8 +6,8 @@ core = 7.x
  835. hidden = TRUE
  836. dependencies[] = blog
  837.  
  838. -; Information added by Drupal.org packaging script on 2018-02-21
  839. -version = "7.57"
  840. +; Information added by Drupal.org packaging script on 2018-03-28
  841. +version = "7.58"
  842. project = "drupal"
  843. -datestamp = "1519235152"
  844. +datestamp = "1522264019"
  845.  
  846. diff --git a/drupal-7.57/modules/search/search.info b/drupal-7.58/modules/search/search.info
  847. index acc1e06..248f476 100644
  848. --- a/drupal-7.57/modules/search/search.info
  849. +++ b/drupal-7.58/modules/search/search.info
  850. @@ -8,8 +8,8 @@ files[] = search.test
  851. configure = admin/config/search/settings
  852. stylesheets[all][] = search.css
  853.  
  854. -; Information added by Drupal.org packaging script on 2018-02-21
  855. -version = "7.57"
  856. +; Information added by Drupal.org packaging script on 2018-03-28
  857. +version = "7.58"
  858. project = "drupal"
  859. -datestamp = "1519235152"
  860. +datestamp = "1522264019"
  861.  
  862. diff --git a/drupal-7.57/modules/search/tests/search_embedded_form.info b/drupal-7.58/modules/search/tests/search_embedded_form.info
  863. index 6f1d495..7e1b736 100644
  864. --- a/drupal-7.57/modules/search/tests/search_embedded_form.info
  865. +++ b/drupal-7.58/modules/search/tests/search_embedded_form.info
  866. @@ -5,8 +5,8 @@ version = VERSION
  867. core = 7.x
  868. hidden = TRUE
  869.  
  870. -; Information added by Drupal.org packaging script on 2018-02-21
  871. -version = "7.57"
  872. +; Information added by Drupal.org packaging script on 2018-03-28
  873. +version = "7.58"
  874. project = "drupal"
  875. -datestamp = "1519235152"
  876. +datestamp = "1522264019"
  877.  
  878. diff --git a/drupal-7.57/modules/search/tests/search_extra_type.info b/drupal-7.58/modules/search/tests/search_extra_type.info
  879. index 6e93745..534edad 100644
  880. --- a/drupal-7.57/modules/search/tests/search_extra_type.info
  881. +++ b/drupal-7.58/modules/search/tests/search_extra_type.info
  882. @@ -5,8 +5,8 @@ version = VERSION
  883. core = 7.x
  884. hidden = TRUE
  885.  
  886. -; Information added by Drupal.org packaging script on 2018-02-21
  887. -version = "7.57"
  888. +; Information added by Drupal.org packaging script on 2018-03-28
  889. +version = "7.58"
  890. project = "drupal"
  891. -datestamp = "1519235152"
  892. +datestamp = "1522264019"
  893.  
  894. diff --git a/drupal-7.57/modules/search/tests/search_node_tags.info b/drupal-7.58/modules/search/tests/search_node_tags.info
  895. index d73c677..1643898 100644
  896. --- a/drupal-7.57/modules/search/tests/search_node_tags.info
  897. +++ b/drupal-7.58/modules/search/tests/search_node_tags.info
  898. @@ -5,8 +5,8 @@ version = VERSION
  899. core = 7.x
  900. hidden = TRUE
  901.  
  902. -; Information added by Drupal.org packaging script on 2018-02-21
  903. -version = "7.57"
  904. +; Information added by Drupal.org packaging script on 2018-03-28
  905. +version = "7.58"
  906. project = "drupal"
  907. -datestamp = "1519235152"
  908. +datestamp = "1522264019"
  909.  
  910. diff --git a/drupal-7.57/modules/shortcut/shortcut.info b/drupal-7.58/modules/shortcut/shortcut.info
  911. index 639cec3..c490374 100644
  912. --- a/drupal-7.57/modules/shortcut/shortcut.info
  913. +++ b/drupal-7.58/modules/shortcut/shortcut.info
  914. @@ -6,8 +6,8 @@ core = 7.x
  915. files[] = shortcut.test
  916. configure = admin/config/user-interface/shortcut
  917.  
  918. -; Information added by Drupal.org packaging script on 2018-02-21
  919. -version = "7.57"
  920. +; Information added by Drupal.org packaging script on 2018-03-28
  921. +version = "7.58"
  922. project = "drupal"
  923. -datestamp = "1519235152"
  924. +datestamp = "1522264019"
  925.  
  926. diff --git a/drupal-7.57/modules/simpletest/simpletest.info b/drupal-7.58/modules/simpletest/simpletest.info
  927. index a99adb0..26b3485 100644
  928. --- a/drupal-7.57/modules/simpletest/simpletest.info
  929. +++ b/drupal-7.58/modules/simpletest/simpletest.info
  930. @@ -57,8 +57,8 @@ files[] = tests/upgrade/update.trigger.test
  931. files[] = tests/upgrade/update.field.test
  932. files[] = tests/upgrade/update.user.test
  933.  
  934. -; Information added by Drupal.org packaging script on 2018-02-21
  935. -version = "7.57"
  936. +; Information added by Drupal.org packaging script on 2018-03-28
  937. +version = "7.58"
  938. project = "drupal"
  939. -datestamp = "1519235152"
  940. +datestamp = "1522264019"
  941.  
  942. diff --git a/drupal-7.57/modules/simpletest/tests/actions_loop_test.info b/drupal-7.58/modules/simpletest/tests/actions_loop_test.info
  943. index 41ed374..2edf253 100644
  944. --- a/drupal-7.57/modules/simpletest/tests/actions_loop_test.info
  945. +++ b/drupal-7.58/modules/simpletest/tests/actions_loop_test.info
  946. @@ -5,8 +5,8 @@ version = VERSION
  947. core = 7.x
  948. hidden = TRUE
  949.  
  950. -; Information added by Drupal.org packaging script on 2018-02-21
  951. -version = "7.57"
  952. +; Information added by Drupal.org packaging script on 2018-03-28
  953. +version = "7.58"
  954. project = "drupal"
  955. -datestamp = "1519235152"
  956. +datestamp = "1522264019"
  957.  
  958. diff --git a/drupal-7.57/modules/simpletest/tests/ajax_forms_test.info b/drupal-7.58/modules/simpletest/tests/ajax_forms_test.info
  959. index 6b868e2..9736647 100644
  960. --- a/drupal-7.57/modules/simpletest/tests/ajax_forms_test.info
  961. +++ b/drupal-7.58/modules/simpletest/tests/ajax_forms_test.info
  962. @@ -5,8 +5,8 @@ package = Testing
  963. version = VERSION
  964. hidden = TRUE
  965.  
  966. -; Information added by Drupal.org packaging script on 2018-02-21
  967. -version = "7.57"
  968. +; Information added by Drupal.org packaging script on 2018-03-28
  969. +version = "7.58"
  970. project = "drupal"
  971. -datestamp = "1519235152"
  972. +datestamp = "1522264019"
  973.  
  974. diff --git a/drupal-7.57/modules/simpletest/tests/ajax_test.info b/drupal-7.58/modules/simpletest/tests/ajax_test.info
  975. index 16329d3..fe2f90b 100644
  976. --- a/drupal-7.57/modules/simpletest/tests/ajax_test.info
  977. +++ b/drupal-7.58/modules/simpletest/tests/ajax_test.info
  978. @@ -5,8 +5,8 @@ version = VERSION
  979. core = 7.x
  980. hidden = TRUE
  981.  
  982. -; Information added by Drupal.org packaging script on 2018-02-21
  983. -version = "7.57"
  984. +; Information added by Drupal.org packaging script on 2018-03-28
  985. +version = "7.58"
  986. project = "drupal"
  987. -datestamp = "1519235152"
  988. +datestamp = "1522264019"
  989.  
  990. diff --git a/drupal-7.57/modules/simpletest/tests/batch_test.info b/drupal-7.58/modules/simpletest/tests/batch_test.info
  991. index 25bcd94..a53e215 100644
  992. --- a/drupal-7.57/modules/simpletest/tests/batch_test.info
  993. +++ b/drupal-7.58/modules/simpletest/tests/batch_test.info
  994. @@ -5,8 +5,8 @@ version = VERSION
  995. core = 7.x
  996. hidden = TRUE
  997.  
  998. -; Information added by Drupal.org packaging script on 2018-02-21
  999. -version = "7.57"
  1000. +; Information added by Drupal.org packaging script on 2018-03-28
  1001. +version = "7.58"
  1002. project = "drupal"
  1003. -datestamp = "1519235152"
  1004. +datestamp = "1522264019"
  1005.  
  1006. diff --git a/drupal-7.57/modules/simpletest/tests/boot_test_1.info b/drupal-7.58/modules/simpletest/tests/boot_test_1.info
  1007. index 7bcafd4..873825d 100644
  1008. --- a/drupal-7.57/modules/simpletest/tests/boot_test_1.info
  1009. +++ b/drupal-7.58/modules/simpletest/tests/boot_test_1.info
  1010. @@ -5,8 +5,8 @@ package = Testing
  1011. version = VERSION
  1012. hidden = TRUE
  1013.  
  1014. -; Information added by Drupal.org packaging script on 2018-02-21
  1015. -version = "7.57"
  1016. +; Information added by Drupal.org packaging script on 2018-03-28
  1017. +version = "7.58"
  1018. project = "drupal"
  1019. -datestamp = "1519235152"
  1020. +datestamp = "1522264019"
  1021.  
  1022. diff --git a/drupal-7.57/modules/simpletest/tests/boot_test_2.info b/drupal-7.58/modules/simpletest/tests/boot_test_2.info
  1023. index 2d01148..e8529ba 100644
  1024. --- a/drupal-7.57/modules/simpletest/tests/boot_test_2.info
  1025. +++ b/drupal-7.58/modules/simpletest/tests/boot_test_2.info
  1026. @@ -5,8 +5,8 @@ package = Testing
  1027. version = VERSION
  1028. hidden = TRUE
  1029.  
  1030. -; Information added by Drupal.org packaging script on 2018-02-21
  1031. -version = "7.57"
  1032. +; Information added by Drupal.org packaging script on 2018-03-28
  1033. +version = "7.58"
  1034. project = "drupal"
  1035. -datestamp = "1519235152"
  1036. +datestamp = "1522264019"
  1037.  
  1038. diff --git a/drupal-7.57/modules/simpletest/tests/common_test.info b/drupal-7.58/modules/simpletest/tests/common_test.info
  1039. index b393804..8c56f80 100644
  1040. --- a/drupal-7.57/modules/simpletest/tests/common_test.info
  1041. +++ b/drupal-7.58/modules/simpletest/tests/common_test.info
  1042. @@ -7,8 +7,8 @@ stylesheets[all][] = common_test.css
  1043. stylesheets[print][] = common_test.print.css
  1044. hidden = TRUE
  1045.  
  1046. -; Information added by Drupal.org packaging script on 2018-02-21
  1047. -version = "7.57"
  1048. +; Information added by Drupal.org packaging script on 2018-03-28
  1049. +version = "7.58"
  1050. project = "drupal"
  1051. -datestamp = "1519235152"
  1052. +datestamp = "1522264019"
  1053.  
  1054. diff --git a/drupal-7.57/modules/simpletest/tests/common_test_cron_helper.info b/drupal-7.58/modules/simpletest/tests/common_test_cron_helper.info
  1055. index 8aeeb7a..bf8a729 100644
  1056. --- a/drupal-7.57/modules/simpletest/tests/common_test_cron_helper.info
  1057. +++ b/drupal-7.58/modules/simpletest/tests/common_test_cron_helper.info
  1058. @@ -5,8 +5,8 @@ version = VERSION
  1059. core = 7.x
  1060. hidden = TRUE
  1061.  
  1062. -; Information added by Drupal.org packaging script on 2018-02-21
  1063. -version = "7.57"
  1064. +; Information added by Drupal.org packaging script on 2018-03-28
  1065. +version = "7.58"
  1066. project = "drupal"
  1067. -datestamp = "1519235152"
  1068. +datestamp = "1522264019"
  1069.  
  1070. diff --git a/drupal-7.57/modules/simpletest/tests/database_test.info b/drupal-7.58/modules/simpletest/tests/database_test.info
  1071. index c39abc4..3ff31ed 100644
  1072. --- a/drupal-7.57/modules/simpletest/tests/database_test.info
  1073. +++ b/drupal-7.58/modules/simpletest/tests/database_test.info
  1074. @@ -5,8 +5,8 @@ package = Testing
  1075. version = VERSION
  1076. hidden = TRUE
  1077.  
  1078. -; Information added by Drupal.org packaging script on 2018-02-21
  1079. -version = "7.57"
  1080. +; Information added by Drupal.org packaging script on 2018-03-28
  1081. +version = "7.58"
  1082. project = "drupal"
  1083. -datestamp = "1519235152"
  1084. +datestamp = "1522264019"
  1085.  
  1086. diff --git a/drupal-7.57/modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.info b/drupal-7.58/modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.info
  1087. index e6629f3..b971535 100644
  1088. --- a/drupal-7.57/modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.info
  1089. +++ b/drupal-7.58/modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.info
  1090. @@ -7,8 +7,8 @@ version = VERSION
  1091. core = 7.x
  1092. hidden = TRUE
  1093.  
  1094. -; Information added by Drupal.org packaging script on 2018-02-21
  1095. -version = "7.57"
  1096. +; Information added by Drupal.org packaging script on 2018-03-28
  1097. +version = "7.58"
  1098. project = "drupal"
  1099. -datestamp = "1519235152"
  1100. +datestamp = "1522264019"
  1101.  
  1102. diff --git a/drupal-7.57/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info b/drupal-7.58/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
  1103. index a773fb2..f918fdc 100644
  1104. --- a/drupal-7.57/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
  1105. +++ b/drupal-7.58/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
  1106. @@ -5,8 +5,8 @@ version = VERSION
  1107. core = 7.x
  1108. hidden = TRUE
  1109.  
  1110. -; Information added by Drupal.org packaging script on 2018-02-21
  1111. -version = "7.57"
  1112. +; Information added by Drupal.org packaging script on 2018-03-28
  1113. +version = "7.58"
  1114. project = "drupal"
  1115. -datestamp = "1519235152"
  1116. +datestamp = "1522264019"
  1117.  
  1118. diff --git a/drupal-7.57/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info b/drupal-7.58/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
  1119. index 9915b3a..9edaf9f 100644
  1120. --- a/drupal-7.57/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
  1121. +++ b/drupal-7.58/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
  1122. @@ -5,8 +5,8 @@ version = VERSION
  1123. core = 7.x
  1124. hidden = TRUE
  1125.  
  1126. -; Information added by Drupal.org packaging script on 2018-02-21
  1127. -version = "7.57"
  1128. +; Information added by Drupal.org packaging script on 2018-03-28
  1129. +version = "7.58"
  1130. project = "drupal"
  1131. -datestamp = "1519235152"
  1132. +datestamp = "1522264019"
  1133.  
  1134. diff --git a/drupal-7.57/modules/simpletest/tests/entity_cache_test.info b/drupal-7.58/modules/simpletest/tests/entity_cache_test.info
  1135. index 1c00940..212ce83 100644
  1136. --- a/drupal-7.57/modules/simpletest/tests/entity_cache_test.info
  1137. +++ b/drupal-7.58/modules/simpletest/tests/entity_cache_test.info
  1138. @@ -6,8 +6,8 @@ core = 7.x
  1139. dependencies[] = entity_cache_test_dependency
  1140. hidden = TRUE
  1141.  
  1142. -; Information added by Drupal.org packaging script on 2018-02-21
  1143. -version = "7.57"
  1144. +; Information added by Drupal.org packaging script on 2018-03-28
  1145. +version = "7.58"
  1146. project = "drupal"
  1147. -datestamp = "1519235152"
  1148. +datestamp = "1522264019"
  1149.  
  1150. diff --git a/drupal-7.57/modules/simpletest/tests/entity_cache_test_dependency.info b/drupal-7.58/modules/simpletest/tests/entity_cache_test_dependency.info
  1151. index 11fd31b..5804987 100644
  1152. --- a/drupal-7.57/modules/simpletest/tests/entity_cache_test_dependency.info
  1153. +++ b/drupal-7.58/modules/simpletest/tests/entity_cache_test_dependency.info
  1154. @@ -5,8 +5,8 @@ version = VERSION
  1155. core = 7.x
  1156. hidden = TRUE
  1157.  
  1158. -; Information added by Drupal.org packaging script on 2018-02-21
  1159. -version = "7.57"
  1160. +; Information added by Drupal.org packaging script on 2018-03-28
  1161. +version = "7.58"
  1162. project = "drupal"
  1163. -datestamp = "1519235152"
  1164. +datestamp = "1522264019"
  1165.  
  1166. diff --git a/drupal-7.57/modules/simpletest/tests/entity_crud_hook_test.info b/drupal-7.58/modules/simpletest/tests/entity_crud_hook_test.info
  1167. index 3962a05..9f5f3ea 100644
  1168. --- a/drupal-7.57/modules/simpletest/tests/entity_crud_hook_test.info
  1169. +++ b/drupal-7.58/modules/simpletest/tests/entity_crud_hook_test.info
  1170. @@ -5,8 +5,8 @@ package = Testing
  1171. version = VERSION
  1172. hidden = TRUE
  1173.  
  1174. -; Information added by Drupal.org packaging script on 2018-02-21
  1175. -version = "7.57"
  1176. +; Information added by Drupal.org packaging script on 2018-03-28
  1177. +version = "7.58"
  1178. project = "drupal"
  1179. -datestamp = "1519235152"
  1180. +datestamp = "1522264019"
  1181.  
  1182. diff --git a/drupal-7.57/modules/simpletest/tests/entity_query_access_test.info b/drupal-7.58/modules/simpletest/tests/entity_query_access_test.info
  1183. index 45c50c0..328e5d9 100644
  1184. --- a/drupal-7.57/modules/simpletest/tests/entity_query_access_test.info
  1185. +++ b/drupal-7.58/modules/simpletest/tests/entity_query_access_test.info
  1186. @@ -5,8 +5,8 @@ version = VERSION
  1187. core = 7.x
  1188. hidden = TRUE
  1189.  
  1190. -; Information added by Drupal.org packaging script on 2018-02-21
  1191. -version = "7.57"
  1192. +; Information added by Drupal.org packaging script on 2018-03-28
  1193. +version = "7.58"
  1194. project = "drupal"
  1195. -datestamp = "1519235152"
  1196. +datestamp = "1522264019"
  1197.  
  1198. diff --git a/drupal-7.57/modules/simpletest/tests/error_test.info b/drupal-7.58/modules/simpletest/tests/error_test.info
  1199. index 23cc7e7..bf6e044 100644
  1200. --- a/drupal-7.57/modules/simpletest/tests/error_test.info
  1201. +++ b/drupal-7.58/modules/simpletest/tests/error_test.info
  1202. @@ -5,8 +5,8 @@ version = VERSION
  1203. core = 7.x
  1204. hidden = TRUE
  1205.  
  1206. -; Information added by Drupal.org packaging script on 2018-02-21
  1207. -version = "7.57"
  1208. +; Information added by Drupal.org packaging script on 2018-03-28
  1209. +version = "7.58"
  1210. project = "drupal"
  1211. -datestamp = "1519235152"
  1212. +datestamp = "1522264019"
  1213.  
  1214. diff --git a/drupal-7.57/modules/simpletest/tests/file_test.info b/drupal-7.58/modules/simpletest/tests/file_test.info
  1215. index 96e6ec2..3ceb3eb 100644
  1216. --- a/drupal-7.57/modules/simpletest/tests/file_test.info
  1217. +++ b/drupal-7.58/modules/simpletest/tests/file_test.info
  1218. @@ -6,8 +6,8 @@ core = 7.x
  1219. files[] = file_test.module
  1220. hidden = TRUE
  1221.  
  1222. -; Information added by Drupal.org packaging script on 2018-02-21
  1223. -version = "7.57"
  1224. +; Information added by Drupal.org packaging script on 2018-03-28
  1225. +version = "7.58"
  1226. project = "drupal"
  1227. -datestamp = "1519235152"
  1228. +datestamp = "1522264019"
  1229.  
  1230. diff --git a/drupal-7.57/modules/simpletest/tests/filter_test.info b/drupal-7.58/modules/simpletest/tests/filter_test.info
  1231. index d1a64e0..96c6c4b 100644
  1232. --- a/drupal-7.57/modules/simpletest/tests/filter_test.info
  1233. +++ b/drupal-7.58/modules/simpletest/tests/filter_test.info
  1234. @@ -5,8 +5,8 @@ version = VERSION
  1235. core = 7.x
  1236. hidden = TRUE
  1237.  
  1238. -; Information added by Drupal.org packaging script on 2018-02-21
  1239. -version = "7.57"
  1240. +; Information added by Drupal.org packaging script on 2018-03-28
  1241. +version = "7.58"
  1242. project = "drupal"
  1243. -datestamp = "1519235152"
  1244. +datestamp = "1522264019"
  1245.  
  1246. diff --git a/drupal-7.57/modules/simpletest/tests/form_test.info b/drupal-7.58/modules/simpletest/tests/form_test.info
  1247. index ec141f4..7706be2 100644
  1248. --- a/drupal-7.57/modules/simpletest/tests/form_test.info
  1249. +++ b/drupal-7.58/modules/simpletest/tests/form_test.info
  1250. @@ -5,8 +5,8 @@ version = VERSION
  1251. core = 7.x
  1252. hidden = TRUE
  1253.  
  1254. -; Information added by Drupal.org packaging script on 2018-02-21
  1255. -version = "7.57"
  1256. +; Information added by Drupal.org packaging script on 2018-03-28
  1257. +version = "7.58"
  1258. project = "drupal"
  1259. -datestamp = "1519235152"
  1260. +datestamp = "1522264019"
  1261.  
  1262. diff --git a/drupal-7.57/modules/simpletest/tests/image_test.info b/drupal-7.58/modules/simpletest/tests/image_test.info
  1263. index f67db2a..82d2a3b 100644
  1264. --- a/drupal-7.57/modules/simpletest/tests/image_test.info
  1265. +++ b/drupal-7.58/modules/simpletest/tests/image_test.info
  1266. @@ -5,8 +5,8 @@ version = VERSION
  1267. core = 7.x
  1268. hidden = TRUE
  1269.  
  1270. -; Information added by Drupal.org packaging script on 2018-02-21
  1271. -version = "7.57"
  1272. +; Information added by Drupal.org packaging script on 2018-03-28
  1273. +version = "7.58"
  1274. project = "drupal"
  1275. -datestamp = "1519235152"
  1276. +datestamp = "1522264019"
  1277.  
  1278. diff --git a/drupal-7.57/modules/simpletest/tests/menu_test.info b/drupal-7.58/modules/simpletest/tests/menu_test.info
  1279. index e430321..26d70dc 100644
  1280. --- a/drupal-7.57/modules/simpletest/tests/menu_test.info
  1281. +++ b/drupal-7.58/modules/simpletest/tests/menu_test.info
  1282. @@ -5,8 +5,8 @@ version = VERSION
  1283. core = 7.x
  1284. hidden = TRUE
  1285.  
  1286. -; Information added by Drupal.org packaging script on 2018-02-21
  1287. -version = "7.57"
  1288. +; Information added by Drupal.org packaging script on 2018-03-28
  1289. +version = "7.58"
  1290. project = "drupal"
  1291. -datestamp = "1519235152"
  1292. +datestamp = "1522264019"
  1293.  
  1294. diff --git a/drupal-7.57/modules/simpletest/tests/module_test.info b/drupal-7.58/modules/simpletest/tests/module_test.info
  1295. index 1df25f1..1ebdd85 100644
  1296. --- a/drupal-7.57/modules/simpletest/tests/module_test.info
  1297. +++ b/drupal-7.58/modules/simpletest/tests/module_test.info
  1298. @@ -5,8 +5,8 @@ version = VERSION
  1299. core = 7.x
  1300. hidden = TRUE
  1301.  
  1302. -; Information added by Drupal.org packaging script on 2018-02-21
  1303. -version = "7.57"
  1304. +; Information added by Drupal.org packaging script on 2018-03-28
  1305. +version = "7.58"
  1306. project = "drupal"
  1307. -datestamp = "1519235152"
  1308. +datestamp = "1522264019"
  1309.  
  1310. diff --git a/drupal-7.57/modules/simpletest/tests/path_test.info b/drupal-7.58/modules/simpletest/tests/path_test.info
  1311. index 02d8569..43ecd96 100644
  1312. --- a/drupal-7.57/modules/simpletest/tests/path_test.info
  1313. +++ b/drupal-7.58/modules/simpletest/tests/path_test.info
  1314. @@ -5,8 +5,8 @@ version = VERSION
  1315. core = 7.x
  1316. hidden = TRUE
  1317.  
  1318. -; Information added by Drupal.org packaging script on 2018-02-21
  1319. -version = "7.57"
  1320. +; Information added by Drupal.org packaging script on 2018-03-28
  1321. +version = "7.58"
  1322. project = "drupal"
  1323. -datestamp = "1519235152"
  1324. +datestamp = "1522264019"
  1325.  
  1326. diff --git a/drupal-7.57/modules/simpletest/tests/psr_0_test/psr_0_test.info b/drupal-7.58/modules/simpletest/tests/psr_0_test/psr_0_test.info
  1327. index 4a62331..ca69f5c 100644
  1328. --- a/drupal-7.57/modules/simpletest/tests/psr_0_test/psr_0_test.info
  1329. +++ b/drupal-7.58/modules/simpletest/tests/psr_0_test/psr_0_test.info
  1330. @@ -5,8 +5,8 @@ core = 7.x
  1331. hidden = TRUE
  1332. package = Testing
  1333.  
  1334. -; Information added by Drupal.org packaging script on 2018-02-21
  1335. -version = "7.57"
  1336. +; Information added by Drupal.org packaging script on 2018-03-28
  1337. +version = "7.58"
  1338. project = "drupal"
  1339. -datestamp = "1519235152"
  1340. +datestamp = "1522264019"
  1341.  
  1342. diff --git a/drupal-7.57/modules/simpletest/tests/psr_4_test/psr_4_test.info b/drupal-7.58/modules/simpletest/tests/psr_4_test/psr_4_test.info
  1343. index 976da9a..75e5b0c 100644
  1344. --- a/drupal-7.57/modules/simpletest/tests/psr_4_test/psr_4_test.info
  1345. +++ b/drupal-7.58/modules/simpletest/tests/psr_4_test/psr_4_test.info
  1346. @@ -5,8 +5,8 @@ core = 7.x
  1347. hidden = TRUE
  1348. package = Testing
  1349.  
  1350. -; Information added by Drupal.org packaging script on 2018-02-21
  1351. -version = "7.57"
  1352. +; Information added by Drupal.org packaging script on 2018-03-28
  1353. +version = "7.58"
  1354. project = "drupal"
  1355. -datestamp = "1519235152"
  1356. +datestamp = "1522264019"
  1357.  
  1358. diff --git a/drupal-7.57/modules/simpletest/tests/requirements1_test.info b/drupal-7.58/modules/simpletest/tests/requirements1_test.info
  1359. index c8308be..c5b3a60 100644
  1360. --- a/drupal-7.57/modules/simpletest/tests/requirements1_test.info
  1361. +++ b/drupal-7.58/modules/simpletest/tests/requirements1_test.info
  1362. @@ -5,8 +5,8 @@ version = VERSION
  1363. core = 7.x
  1364. hidden = TRUE
  1365.  
  1366. -; Information added by Drupal.org packaging script on 2018-02-21
  1367. -version = "7.57"
  1368. +; Information added by Drupal.org packaging script on 2018-03-28
  1369. +version = "7.58"
  1370. project = "drupal"
  1371. -datestamp = "1519235152"
  1372. +datestamp = "1522264019"
  1373.  
  1374. diff --git a/drupal-7.57/modules/simpletest/tests/requirements2_test.info b/drupal-7.58/modules/simpletest/tests/requirements2_test.info
  1375. index bfbfbde..b12197e 100644
  1376. --- a/drupal-7.57/modules/simpletest/tests/requirements2_test.info
  1377. +++ b/drupal-7.58/modules/simpletest/tests/requirements2_test.info
  1378. @@ -7,8 +7,8 @@ version = VERSION
  1379. core = 7.x
  1380. hidden = TRUE
  1381.  
  1382. -; Information added by Drupal.org packaging script on 2018-02-21
  1383. -version = "7.57"
  1384. +; Information added by Drupal.org packaging script on 2018-03-28
  1385. +version = "7.58"
  1386. project = "drupal"
  1387. -datestamp = "1519235152"
  1388. +datestamp = "1522264019"
  1389.  
  1390. diff --git a/drupal-7.57/modules/simpletest/tests/session_test.info b/drupal-7.58/modules/simpletest/tests/session_test.info
  1391. index ecf7e4d..4987dea 100644
  1392. --- a/drupal-7.57/modules/simpletest/tests/session_test.info
  1393. +++ b/drupal-7.58/modules/simpletest/tests/session_test.info
  1394. @@ -5,8 +5,8 @@ version = VERSION
  1395. core = 7.x
  1396. hidden = TRUE
  1397.  
  1398. -; Information added by Drupal.org packaging script on 2018-02-21
  1399. -version = "7.57"
  1400. +; Information added by Drupal.org packaging script on 2018-03-28
  1401. +version = "7.58"
  1402. project = "drupal"
  1403. -datestamp = "1519235152"
  1404. +datestamp = "1522264019"
  1405.  
  1406. diff --git a/drupal-7.57/modules/simpletest/tests/system_dependencies_test.info b/drupal-7.58/modules/simpletest/tests/system_dependencies_test.info
  1407. index 561050e..4b03f29 100644
  1408. --- a/drupal-7.57/modules/simpletest/tests/system_dependencies_test.info
  1409. +++ b/drupal-7.58/modules/simpletest/tests/system_dependencies_test.info
  1410. @@ -6,8 +6,8 @@ core = 7.x
  1411. hidden = TRUE
  1412. dependencies[] = _missing_dependency
  1413.  
  1414. -; Information added by Drupal.org packaging script on 2018-02-21
  1415. -version = "7.57"
  1416. +; Information added by Drupal.org packaging script on 2018-03-28
  1417. +version = "7.58"
  1418. project = "drupal"
  1419. -datestamp = "1519235152"
  1420. +datestamp = "1522264019"
  1421.  
  1422. diff --git a/drupal-7.57/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.info b/drupal-7.58/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.info
  1423. index 24ea2aa..cb2749e 100644
  1424. --- a/drupal-7.57/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.info
  1425. +++ b/drupal-7.58/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.info
  1426. @@ -6,8 +6,8 @@ core = 7.x
  1427. hidden = TRUE
  1428. dependencies[] = system_incompatible_core_version_test
  1429.  
  1430. -; Information added by Drupal.org packaging script on 2018-02-21
  1431. -version = "7.57"
  1432. +; Information added by Drupal.org packaging script on 2018-03-28
  1433. +version = "7.58"
  1434. project = "drupal"
  1435. -datestamp = "1519235152"
  1436. +datestamp = "1522264019"
  1437.  
  1438. diff --git a/drupal-7.57/modules/simpletest/tests/system_incompatible_core_version_test.info b/drupal-7.58/modules/simpletest/tests/system_incompatible_core_version_test.info
  1439. index 9f6147e..338521f 100644
  1440. --- a/drupal-7.57/modules/simpletest/tests/system_incompatible_core_version_test.info
  1441. +++ b/drupal-7.58/modules/simpletest/tests/system_incompatible_core_version_test.info
  1442. @@ -5,8 +5,8 @@ version = VERSION
  1443. core = 5.x
  1444. hidden = TRUE
  1445.  
  1446. -; Information added by Drupal.org packaging script on 2018-02-21
  1447. -version = "7.57"
  1448. +; Information added by Drupal.org packaging script on 2018-03-28
  1449. +version = "7.58"
  1450. project = "drupal"
  1451. -datestamp = "1519235152"
  1452. +datestamp = "1522264019"
  1453.  
  1454. diff --git a/drupal-7.57/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info b/drupal-7.58/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info
  1455. index 4f5a174..edf6dd1 100644
  1456. --- a/drupal-7.57/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info
  1457. +++ b/drupal-7.58/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info
  1458. @@ -7,8 +7,8 @@ hidden = TRUE
  1459. ; system_incompatible_module_version_test declares version 1.0
  1460. dependencies[] = system_incompatible_module_version_test (>2.0)
  1461.  
  1462. -; Information added by Drupal.org packaging script on 2018-02-21
  1463. -version = "7.57"
  1464. +; Information added by Drupal.org packaging script on 2018-03-28
  1465. +version = "7.58"
  1466. project = "drupal"
  1467. -datestamp = "1519235152"
  1468. +datestamp = "1522264019"
  1469.  
  1470. diff --git a/drupal-7.57/modules/simpletest/tests/system_incompatible_module_version_test.info b/drupal-7.58/modules/simpletest/tests/system_incompatible_module_version_test.info
  1471. index a7917d7..51f3efc 100644
  1472. --- a/drupal-7.57/modules/simpletest/tests/system_incompatible_module_version_test.info
  1473. +++ b/drupal-7.58/modules/simpletest/tests/system_incompatible_module_version_test.info
  1474. @@ -5,8 +5,8 @@ version = 1.0
  1475. core = 7.x
  1476. hidden = TRUE
  1477.  
  1478. -; Information added by Drupal.org packaging script on 2018-02-21
  1479. -version = "7.57"
  1480. +; Information added by Drupal.org packaging script on 2018-03-28
  1481. +version = "7.58"
  1482. project = "drupal"
  1483. -datestamp = "1519235152"
  1484. +datestamp = "1522264019"
  1485.  
  1486. diff --git a/drupal-7.57/modules/simpletest/tests/system_project_namespace_test.info b/drupal-7.58/modules/simpletest/tests/system_project_namespace_test.info
  1487. index d443c0c..1507739 100644
  1488. --- a/drupal-7.57/modules/simpletest/tests/system_project_namespace_test.info
  1489. +++ b/drupal-7.58/modules/simpletest/tests/system_project_namespace_test.info
  1490. @@ -6,8 +6,8 @@ core = 7.x
  1491. hidden = TRUE
  1492. dependencies[] = drupal:filter
  1493.  
  1494. -; Information added by Drupal.org packaging script on 2018-02-21
  1495. -version = "7.57"
  1496. +; Information added by Drupal.org packaging script on 2018-03-28
  1497. +version = "7.58"
  1498. project = "drupal"
  1499. -datestamp = "1519235152"
  1500. +datestamp = "1522264019"
  1501.  
  1502. diff --git a/drupal-7.57/modules/simpletest/tests/system_test.info b/drupal-7.58/modules/simpletest/tests/system_test.info
  1503. index 26da71d..4b6175b 100644
  1504. --- a/drupal-7.57/modules/simpletest/tests/system_test.info
  1505. +++ b/drupal-7.58/modules/simpletest/tests/system_test.info
  1506. @@ -6,8 +6,8 @@ core = 7.x
  1507. files[] = system_test.module
  1508. hidden = TRUE
  1509.  
  1510. -; Information added by Drupal.org packaging script on 2018-02-21
  1511. -version = "7.57"
  1512. +; Information added by Drupal.org packaging script on 2018-03-28
  1513. +version = "7.58"
  1514. project = "drupal"
  1515. -datestamp = "1519235152"
  1516. +datestamp = "1522264019"
  1517.  
  1518. diff --git a/drupal-7.57/modules/simpletest/tests/taxonomy_test.info b/drupal-7.58/modules/simpletest/tests/taxonomy_test.info
  1519. index 345d169..3ccf229 100644
  1520. --- a/drupal-7.57/modules/simpletest/tests/taxonomy_test.info
  1521. +++ b/drupal-7.58/modules/simpletest/tests/taxonomy_test.info
  1522. @@ -6,8 +6,8 @@ core = 7.x
  1523. hidden = TRUE
  1524. dependencies[] = taxonomy
  1525.  
  1526. -; Information added by Drupal.org packaging script on 2018-02-21
  1527. -version = "7.57"
  1528. +; Information added by Drupal.org packaging script on 2018-03-28
  1529. +version = "7.58"
  1530. project = "drupal"
  1531. -datestamp = "1519235152"
  1532. +datestamp = "1522264019"
  1533.  
  1534. diff --git a/drupal-7.57/modules/simpletest/tests/theme_test.info b/drupal-7.58/modules/simpletest/tests/theme_test.info
  1535. index 1ffdeba..f5cb1ea 100644
  1536. --- a/drupal-7.57/modules/simpletest/tests/theme_test.info
  1537. +++ b/drupal-7.58/modules/simpletest/tests/theme_test.info
  1538. @@ -5,8 +5,8 @@ version = VERSION
  1539. core = 7.x
  1540. hidden = TRUE
  1541.  
  1542. -; Information added by Drupal.org packaging script on 2018-02-21
  1543. -version = "7.57"
  1544. +; Information added by Drupal.org packaging script on 2018-03-28
  1545. +version = "7.58"
  1546. project = "drupal"
  1547. -datestamp = "1519235152"
  1548. +datestamp = "1522264019"
  1549.  
  1550. diff --git a/drupal-7.57/modules/simpletest/tests/themes/test_basetheme/test_basetheme.info b/drupal-7.58/modules/simpletest/tests/themes/test_basetheme/test_basetheme.info
  1551. index 4cedc98..ed247b7 100644
  1552. --- a/drupal-7.57/modules/simpletest/tests/themes/test_basetheme/test_basetheme.info
  1553. +++ b/drupal-7.58/modules/simpletest/tests/themes/test_basetheme/test_basetheme.info
  1554. @@ -6,8 +6,8 @@ hidden = TRUE
  1555. settings[basetheme_only] = base theme value
  1556. settings[subtheme_override] = base theme value
  1557.  
  1558. -; Information added by Drupal.org packaging script on 2018-02-21
  1559. -version = "7.57"
  1560. +; Information added by Drupal.org packaging script on 2018-03-28
  1561. +version = "7.58"
  1562. project = "drupal"
  1563. -datestamp = "1519235152"
  1564. +datestamp = "1522264019"
  1565.  
  1566. diff --git a/drupal-7.57/modules/simpletest/tests/themes/test_subtheme/test_subtheme.info b/drupal-7.58/modules/simpletest/tests/themes/test_subtheme/test_subtheme.info
  1567. index 6d63e57..dfd8bd8 100644
  1568. --- a/drupal-7.57/modules/simpletest/tests/themes/test_subtheme/test_subtheme.info
  1569. +++ b/drupal-7.58/modules/simpletest/tests/themes/test_subtheme/test_subtheme.info
  1570. @@ -6,8 +6,8 @@ hidden = TRUE
  1571.  
  1572. settings[subtheme_override] = subtheme value
  1573.  
  1574. -; Information added by Drupal.org packaging script on 2018-02-21
  1575. -version = "7.57"
  1576. +; Information added by Drupal.org packaging script on 2018-03-28
  1577. +version = "7.58"
  1578. project = "drupal"
  1579. -datestamp = "1519235152"
  1580. +datestamp = "1522264019"
  1581.  
  1582. diff --git a/drupal-7.57/modules/simpletest/tests/themes/test_theme/test_theme.info b/drupal-7.58/modules/simpletest/tests/themes/test_theme/test_theme.info
  1583. index 2f43cf1..c132c91 100644
  1584. --- a/drupal-7.57/modules/simpletest/tests/themes/test_theme/test_theme.info
  1585. +++ b/drupal-7.58/modules/simpletest/tests/themes/test_theme/test_theme.info
  1586. @@ -17,8 +17,8 @@ stylesheets[all][] = system.base.css
  1587.  
  1588. settings[theme_test_setting] = default value
  1589.  
  1590. -; Information added by Drupal.org packaging script on 2018-02-21
  1591. -version = "7.57"
  1592. +; Information added by Drupal.org packaging script on 2018-03-28
  1593. +version = "7.58"
  1594. project = "drupal"
  1595. -datestamp = "1519235152"
  1596. +datestamp = "1522264019"
  1597.  
  1598. diff --git a/drupal-7.57/modules/simpletest/tests/themes/test_theme_nyan_cat/test_theme_nyan_cat.info b/drupal-7.58/modules/simpletest/tests/themes/test_theme_nyan_cat/test_theme_nyan_cat.info
  1599. index e713607..a4f5649 100644
  1600. --- a/drupal-7.57/modules/simpletest/tests/themes/test_theme_nyan_cat/test_theme_nyan_cat.info
  1601. +++ b/drupal-7.58/modules/simpletest/tests/themes/test_theme_nyan_cat/test_theme_nyan_cat.info
  1602. @@ -4,8 +4,8 @@ core = 7.x
  1603. hidden = TRUE
  1604. engine = nyan_cat
  1605.  
  1606. -; Information added by Drupal.org packaging script on 2018-02-21
  1607. -version = "7.57"
  1608. +; Information added by Drupal.org packaging script on 2018-03-28
  1609. +version = "7.58"
  1610. project = "drupal"
  1611. -datestamp = "1519235152"
  1612. +datestamp = "1522264019"
  1613.  
  1614. diff --git a/drupal-7.57/modules/simpletest/tests/update_script_test.info b/drupal-7.58/modules/simpletest/tests/update_script_test.info
  1615. index 33c9209..f3bfc50 100644
  1616. --- a/drupal-7.57/modules/simpletest/tests/update_script_test.info
  1617. +++ b/drupal-7.58/modules/simpletest/tests/update_script_test.info
  1618. @@ -5,8 +5,8 @@ version = VERSION
  1619. core = 7.x
  1620. hidden = TRUE
  1621.  
  1622. -; Information added by Drupal.org packaging script on 2018-02-21
  1623. -version = "7.57"
  1624. +; Information added by Drupal.org packaging script on 2018-03-28
  1625. +version = "7.58"
  1626. project = "drupal"
  1627. -datestamp = "1519235152"
  1628. +datestamp = "1522264019"
  1629.  
  1630. diff --git a/drupal-7.57/modules/simpletest/tests/update_test_1.info b/drupal-7.58/modules/simpletest/tests/update_test_1.info
  1631. index 382c4c5..a7431d5 100644
  1632. --- a/drupal-7.57/modules/simpletest/tests/update_test_1.info
  1633. +++ b/drupal-7.58/modules/simpletest/tests/update_test_1.info
  1634. @@ -5,8 +5,8 @@ version = VERSION
  1635. core = 7.x
  1636. hidden = TRUE
  1637.  
  1638. -; Information added by Drupal.org packaging script on 2018-02-21
  1639. -version = "7.57"
  1640. +; Information added by Drupal.org packaging script on 2018-03-28
  1641. +version = "7.58"
  1642. project = "drupal"
  1643. -datestamp = "1519235152"
  1644. +datestamp = "1522264019"
  1645.  
  1646. diff --git a/drupal-7.57/modules/simpletest/tests/update_test_2.info b/drupal-7.58/modules/simpletest/tests/update_test_2.info
  1647. index 382c4c5..a7431d5 100644
  1648. --- a/drupal-7.57/modules/simpletest/tests/update_test_2.info
  1649. +++ b/drupal-7.58/modules/simpletest/tests/update_test_2.info
  1650. @@ -5,8 +5,8 @@ version = VERSION
  1651. core = 7.x
  1652. hidden = TRUE
  1653.  
  1654. -; Information added by Drupal.org packaging script on 2018-02-21
  1655. -version = "7.57"
  1656. +; Information added by Drupal.org packaging script on 2018-03-28
  1657. +version = "7.58"
  1658. project = "drupal"
  1659. -datestamp = "1519235152"
  1660. +datestamp = "1522264019"
  1661.  
  1662. diff --git a/drupal-7.57/modules/simpletest/tests/update_test_3.info b/drupal-7.58/modules/simpletest/tests/update_test_3.info
  1663. index 382c4c5..a7431d5 100644
  1664. --- a/drupal-7.57/modules/simpletest/tests/update_test_3.info
  1665. +++ b/drupal-7.58/modules/simpletest/tests/update_test_3.info
  1666. @@ -5,8 +5,8 @@ version = VERSION
  1667. core = 7.x
  1668. hidden = TRUE
  1669.  
  1670. -; Information added by Drupal.org packaging script on 2018-02-21
  1671. -version = "7.57"
  1672. +; Information added by Drupal.org packaging script on 2018-03-28
  1673. +version = "7.58"
  1674. project = "drupal"
  1675. -datestamp = "1519235152"
  1676. +datestamp = "1522264019"
  1677.  
  1678. diff --git a/drupal-7.57/modules/simpletest/tests/url_alter_test.info b/drupal-7.58/modules/simpletest/tests/url_alter_test.info
  1679. index e8cf1d1..23676af 100644
  1680. --- a/drupal-7.57/modules/simpletest/tests/url_alter_test.info
  1681. +++ b/drupal-7.58/modules/simpletest/tests/url_alter_test.info
  1682. @@ -5,8 +5,8 @@ package = Testing
  1683. version = VERSION
  1684. hidden = TRUE
  1685.  
  1686. -; Information added by Drupal.org packaging script on 2018-02-21
  1687. -version = "7.57"
  1688. +; Information added by Drupal.org packaging script on 2018-03-28
  1689. +version = "7.58"
  1690. project = "drupal"
  1691. -datestamp = "1519235152"
  1692. +datestamp = "1522264019"
  1693.  
  1694. diff --git a/drupal-7.57/modules/simpletest/tests/xmlrpc_test.info b/drupal-7.58/modules/simpletest/tests/xmlrpc_test.info
  1695. index 9f511c3..ab787cc 100644
  1696. --- a/drupal-7.57/modules/simpletest/tests/xmlrpc_test.info
  1697. +++ b/drupal-7.58/modules/simpletest/tests/xmlrpc_test.info
  1698. @@ -5,8 +5,8 @@ version = VERSION
  1699. core = 7.x
  1700. hidden = TRUE
  1701.  
  1702. -; Information added by Drupal.org packaging script on 2018-02-21
  1703. -version = "7.57"
  1704. +; Information added by Drupal.org packaging script on 2018-03-28
  1705. +version = "7.58"
  1706. project = "drupal"
  1707. -datestamp = "1519235152"
  1708. +datestamp = "1522264019"
  1709.  
  1710. diff --git a/drupal-7.57/modules/statistics/statistics.info b/drupal-7.58/modules/statistics/statistics.info
  1711. index d328272..26c1794 100644
  1712. --- a/drupal-7.57/modules/statistics/statistics.info
  1713. +++ b/drupal-7.58/modules/statistics/statistics.info
  1714. @@ -6,8 +6,8 @@ core = 7.x
  1715. files[] = statistics.test
  1716. configure = admin/config/system/statistics
  1717.  
  1718. -; Information added by Drupal.org packaging script on 2018-02-21
  1719. -version = "7.57"
  1720. +; Information added by Drupal.org packaging script on 2018-03-28
  1721. +version = "7.58"
  1722. project = "drupal"
  1723. -datestamp = "1519235152"
  1724. +datestamp = "1522264019"
  1725.  
  1726. diff --git a/drupal-7.57/modules/syslog/syslog.info b/drupal-7.58/modules/syslog/syslog.info
  1727. index 45d87a7..3f8b6ca 100644
  1728. --- a/drupal-7.57/modules/syslog/syslog.info
  1729. +++ b/drupal-7.58/modules/syslog/syslog.info
  1730. @@ -6,8 +6,8 @@ core = 7.x
  1731. files[] = syslog.test
  1732. configure = admin/config/development/logging
  1733.  
  1734. -; Information added by Drupal.org packaging script on 2018-02-21
  1735. -version = "7.57"
  1736. +; Information added by Drupal.org packaging script on 2018-03-28
  1737. +version = "7.58"
  1738. project = "drupal"
  1739. -datestamp = "1519235152"
  1740. +datestamp = "1522264019"
  1741.  
  1742. diff --git a/drupal-7.57/modules/system/system.info b/drupal-7.58/modules/system/system.info
  1743. index 0a02440..da08a99 100644
  1744. --- a/drupal-7.57/modules/system/system.info
  1745. +++ b/drupal-7.58/modules/system/system.info
  1746. @@ -12,8 +12,8 @@ files[] = system.test
  1747. required = TRUE
  1748. configure = admin/config/system
  1749.  
  1750. -; Information added by Drupal.org packaging script on 2018-02-21
  1751. -version = "7.57"
  1752. +; Information added by Drupal.org packaging script on 2018-03-28
  1753. +version = "7.58"
  1754. project = "drupal"
  1755. -datestamp = "1519235152"
  1756. +datestamp = "1522264019"
  1757.  
  1758. diff --git a/drupal-7.57/modules/system/tests/cron_queue_test.info b/drupal-7.58/modules/system/tests/cron_queue_test.info
  1759. index 2e1b91f..86d9e08 100644
  1760. --- a/drupal-7.57/modules/system/tests/cron_queue_test.info
  1761. +++ b/drupal-7.58/modules/system/tests/cron_queue_test.info
  1762. @@ -5,8 +5,8 @@ version = VERSION
  1763. core = 7.x
  1764. hidden = TRUE
  1765.  
  1766. -; Information added by Drupal.org packaging script on 2018-02-21
  1767. -version = "7.57"
  1768. +; Information added by Drupal.org packaging script on 2018-03-28
  1769. +version = "7.58"
  1770. project = "drupal"
  1771. -datestamp = "1519235152"
  1772. +datestamp = "1522264019"
  1773.  
  1774. diff --git a/drupal-7.57/modules/system/tests/system_cron_test.info b/drupal-7.58/modules/system/tests/system_cron_test.info
  1775. index d6fca88..662c7c4 100644
  1776. --- a/drupal-7.57/modules/system/tests/system_cron_test.info
  1777. +++ b/drupal-7.58/modules/system/tests/system_cron_test.info
  1778. @@ -5,8 +5,8 @@ version = VERSION
  1779. core = 7.x
  1780. hidden = TRUE
  1781.  
  1782. -; Information added by Drupal.org packaging script on 2018-02-21
  1783. -version = "7.57"
  1784. +; Information added by Drupal.org packaging script on 2018-03-28
  1785. +version = "7.58"
  1786. project = "drupal"
  1787. -datestamp = "1519235152"
  1788. +datestamp = "1522264019"
  1789.  
  1790. diff --git a/drupal-7.57/modules/taxonomy/taxonomy.info b/drupal-7.58/modules/taxonomy/taxonomy.info
  1791. index c53114d..1f2fec8 100644
  1792. --- a/drupal-7.57/modules/taxonomy/taxonomy.info
  1793. +++ b/drupal-7.58/modules/taxonomy/taxonomy.info
  1794. @@ -8,8 +8,8 @@ files[] = taxonomy.module
  1795. files[] = taxonomy.test
  1796. configure = admin/structure/taxonomy
  1797.  
  1798. -; Information added by Drupal.org packaging script on 2018-02-21
  1799. -version = "7.57"
  1800. +; Information added by Drupal.org packaging script on 2018-03-28
  1801. +version = "7.58"
  1802. project = "drupal"
  1803. -datestamp = "1519235152"
  1804. +datestamp = "1522264019"
  1805.  
  1806. diff --git a/drupal-7.57/modules/toolbar/toolbar.info b/drupal-7.58/modules/toolbar/toolbar.info
  1807. index 2ed30db..f025761 100644
  1808. --- a/drupal-7.57/modules/toolbar/toolbar.info
  1809. +++ b/drupal-7.58/modules/toolbar/toolbar.info
  1810. @@ -4,8 +4,8 @@ core = 7.x
  1811. package = Core
  1812. version = VERSION
  1813.  
  1814. -; Information added by Drupal.org packaging script on 2018-02-21
  1815. -version = "7.57"
  1816. +; Information added by Drupal.org packaging script on 2018-03-28
  1817. +version = "7.58"
  1818. project = "drupal"
  1819. -datestamp = "1519235152"
  1820. +datestamp = "1522264019"
  1821.  
  1822. diff --git a/drupal-7.57/modules/tracker/tracker.info b/drupal-7.58/modules/tracker/tracker.info
  1823. index fd80d73..d7cb61b 100644
  1824. --- a/drupal-7.57/modules/tracker/tracker.info
  1825. +++ b/drupal-7.58/modules/tracker/tracker.info
  1826. @@ -6,8 +6,8 @@ version = VERSION
  1827. core = 7.x
  1828. files[] = tracker.test
  1829.  
  1830. -; Information added by Drupal.org packaging script on 2018-02-21
  1831. -version = "7.57"
  1832. +; Information added by Drupal.org packaging script on 2018-03-28
  1833. +version = "7.58"
  1834. project = "drupal"
  1835. -datestamp = "1519235152"
  1836. +datestamp = "1522264019"
  1837.  
  1838. diff --git a/drupal-7.57/modules/translation/tests/translation_test.info b/drupal-7.58/modules/translation/tests/translation_test.info
  1839. index b1bf7f4..9b597a0 100644
  1840. --- a/drupal-7.57/modules/translation/tests/translation_test.info
  1841. +++ b/drupal-7.58/modules/translation/tests/translation_test.info
  1842. @@ -5,8 +5,8 @@ package = Testing
  1843. version = VERSION
  1844. hidden = TRUE
  1845.  
  1846. -; Information added by Drupal.org packaging script on 2018-02-21
  1847. -version = "7.57"
  1848. +; Information added by Drupal.org packaging script on 2018-03-28
  1849. +version = "7.58"
  1850. project = "drupal"
  1851. -datestamp = "1519235152"
  1852. +datestamp = "1522264019"
  1853.  
  1854. diff --git a/drupal-7.57/modules/translation/translation.info b/drupal-7.58/modules/translation/translation.info
  1855. index c6161af..3e6513f 100644
  1856. --- a/drupal-7.57/modules/translation/translation.info
  1857. +++ b/drupal-7.58/modules/translation/translation.info
  1858. @@ -6,8 +6,8 @@ version = VERSION
  1859. core = 7.x
  1860. files[] = translation.test
  1861.  
  1862. -; Information added by Drupal.org packaging script on 2018-02-21
  1863. -version = "7.57"
  1864. +; Information added by Drupal.org packaging script on 2018-03-28
  1865. +version = "7.58"
  1866. project = "drupal"
  1867. -datestamp = "1519235152"
  1868. +datestamp = "1522264019"
  1869.  
  1870. diff --git a/drupal-7.57/modules/trigger/tests/trigger_test.info b/drupal-7.58/modules/trigger/tests/trigger_test.info
  1871. index 4c9352b..13e0698 100644
  1872. --- a/drupal-7.57/modules/trigger/tests/trigger_test.info
  1873. +++ b/drupal-7.58/modules/trigger/tests/trigger_test.info
  1874. @@ -4,8 +4,8 @@ package = Testing
  1875. core = 7.x
  1876. hidden = TRUE
  1877.  
  1878. -; Information added by Drupal.org packaging script on 2018-02-21
  1879. -version = "7.57"
  1880. +; Information added by Drupal.org packaging script on 2018-03-28
  1881. +version = "7.58"
  1882. project = "drupal"
  1883. -datestamp = "1519235152"
  1884. +datestamp = "1522264019"
  1885.  
  1886. diff --git a/drupal-7.57/modules/trigger/trigger.info b/drupal-7.58/modules/trigger/trigger.info
  1887. index 3d0486e..4c21ba8 100644
  1888. --- a/drupal-7.57/modules/trigger/trigger.info
  1889. +++ b/drupal-7.58/modules/trigger/trigger.info
  1890. @@ -6,8 +6,8 @@ core = 7.x
  1891. files[] = trigger.test
  1892. configure = admin/structure/trigger
  1893.  
  1894. -; Information added by Drupal.org packaging script on 2018-02-21
  1895. -version = "7.57"
  1896. +; Information added by Drupal.org packaging script on 2018-03-28
  1897. +version = "7.58"
  1898. project = "drupal"
  1899. -datestamp = "1519235152"
  1900. +datestamp = "1522264019"
  1901.  
  1902. diff --git a/drupal-7.57/modules/update/tests/aaa_update_test.info b/drupal-7.58/modules/update/tests/aaa_update_test.info
  1903. index 81c852f..96ac28a 100644
  1904. --- a/drupal-7.57/modules/update/tests/aaa_update_test.info
  1905. +++ b/drupal-7.58/modules/update/tests/aaa_update_test.info
  1906. @@ -4,8 +4,8 @@ package = Testing
  1907. core = 7.x
  1908. hidden = TRUE
  1909.  
  1910. -; Information added by Drupal.org packaging script on 2018-02-21
  1911. -version = "7.57"
  1912. +; Information added by Drupal.org packaging script on 2018-03-28
  1913. +version = "7.58"
  1914. project = "drupal"
  1915. -datestamp = "1519235152"
  1916. +datestamp = "1522264019"
  1917.  
  1918. diff --git a/drupal-7.57/modules/update/tests/bbb_update_test.info b/drupal-7.58/modules/update/tests/bbb_update_test.info
  1919. index e43a41d..954fb75 100644
  1920. --- a/drupal-7.57/modules/update/tests/bbb_update_test.info
  1921. +++ b/drupal-7.58/modules/update/tests/bbb_update_test.info
  1922. @@ -4,8 +4,8 @@ package = Testing
  1923. core = 7.x
  1924. hidden = TRUE
  1925.  
  1926. -; Information added by Drupal.org packaging script on 2018-02-21
  1927. -version = "7.57"
  1928. +; Information added by Drupal.org packaging script on 2018-03-28
  1929. +version = "7.58"
  1930. project = "drupal"
  1931. -datestamp = "1519235152"
  1932. +datestamp = "1522264019"
  1933.  
  1934. diff --git a/drupal-7.57/modules/update/tests/ccc_update_test.info b/drupal-7.58/modules/update/tests/ccc_update_test.info
  1935. index 84c4a19..f3b7d04 100644
  1936. --- a/drupal-7.57/modules/update/tests/ccc_update_test.info
  1937. +++ b/drupal-7.58/modules/update/tests/ccc_update_test.info
  1938. @@ -4,8 +4,8 @@ package = Testing
  1939. core = 7.x
  1940. hidden = TRUE
  1941.  
  1942. -; Information added by Drupal.org packaging script on 2018-02-21
  1943. -version = "7.57"
  1944. +; Information added by Drupal.org packaging script on 2018-03-28
  1945. +version = "7.58"
  1946. project = "drupal"
  1947. -datestamp = "1519235152"
  1948. +datestamp = "1522264019"
  1949.  
  1950. diff --git a/drupal-7.57/modules/update/tests/themes/update_test_admintheme/update_test_admintheme.info b/drupal-7.58/modules/update/tests/themes/update_test_admintheme/update_test_admintheme.info
  1951. index 2753163..d21dd9c 100644
  1952. --- a/drupal-7.57/modules/update/tests/themes/update_test_admintheme/update_test_admintheme.info
  1953. +++ b/drupal-7.58/modules/update/tests/themes/update_test_admintheme/update_test_admintheme.info
  1954. @@ -3,8 +3,8 @@ description = Test theme which is used as admin theme.
  1955. core = 7.x
  1956. hidden = TRUE
  1957.  
  1958. -; Information added by Drupal.org packaging script on 2018-02-21
  1959. -version = "7.57"
  1960. +; Information added by Drupal.org packaging script on 2018-03-28
  1961. +version = "7.58"
  1962. project = "drupal"
  1963. -datestamp = "1519235152"
  1964. +datestamp = "1522264019"
  1965.  
  1966. diff --git a/drupal-7.57/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info b/drupal-7.58/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info
  1967. index 62c9358..07eb50f 100644
  1968. --- a/drupal-7.57/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info
  1969. +++ b/drupal-7.58/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info
  1970. @@ -3,8 +3,8 @@ description = Test theme which acts as a base theme for other test subthemes.
  1971. core = 7.x
  1972. hidden = TRUE
  1973.  
  1974. -; Information added by Drupal.org packaging script on 2018-02-21
  1975. -version = "7.57"
  1976. +; Information added by Drupal.org packaging script on 2018-03-28
  1977. +version = "7.58"
  1978. project = "drupal"
  1979. -datestamp = "1519235152"
  1980. +datestamp = "1522264019"
  1981.  
  1982. diff --git a/drupal-7.57/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info b/drupal-7.58/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info
  1983. index 157f5c2..26b480c 100644
  1984. --- a/drupal-7.57/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info
  1985. +++ b/drupal-7.58/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info
  1986. @@ -4,8 +4,8 @@ core = 7.x
  1987. base theme = update_test_basetheme
  1988. hidden = TRUE
  1989.  
  1990. -; Information added by Drupal.org packaging script on 2018-02-21
  1991. -version = "7.57"
  1992. +; Information added by Drupal.org packaging script on 2018-03-28
  1993. +version = "7.58"
  1994. project = "drupal"
  1995. -datestamp = "1519235152"
  1996. +datestamp = "1522264019"
  1997.  
  1998. diff --git a/drupal-7.57/modules/update/tests/update_test.info b/drupal-7.58/modules/update/tests/update_test.info
  1999. index 7277dfa..7b42bc2 100644
  2000. --- a/drupal-7.57/modules/update/tests/update_test.info
  2001. +++ b/drupal-7.58/modules/update/tests/update_test.info
  2002. @@ -5,8 +5,8 @@ version = VERSION
  2003. core = 7.x
  2004. hidden = TRUE
  2005.  
  2006. -; Information added by Drupal.org packaging script on 2018-02-21
  2007. -version = "7.57"
  2008. +; Information added by Drupal.org packaging script on 2018-03-28
  2009. +version = "7.58"
  2010. project = "drupal"
  2011. -datestamp = "1519235152"
  2012. +datestamp = "1522264019"
  2013.  
  2014. diff --git a/drupal-7.57/modules/update/update.info b/drupal-7.58/modules/update/update.info
  2015. index a6766df..4d9c369 100644
  2016. --- a/drupal-7.57/modules/update/update.info
  2017. +++ b/drupal-7.58/modules/update/update.info
  2018. @@ -6,8 +6,8 @@ core = 7.x
  2019. files[] = update.test
  2020. configure = admin/reports/updates/settings
  2021.  
  2022. -; Information added by Drupal.org packaging script on 2018-02-21
  2023. -version = "7.57"
  2024. +; Information added by Drupal.org packaging script on 2018-03-28
  2025. +version = "7.58"
  2026. project = "drupal"
  2027. -datestamp = "1519235152"
  2028. +datestamp = "1522264019"
  2029.  
  2030. diff --git a/drupal-7.57/modules/user/tests/user_form_test.info b/drupal-7.58/modules/user/tests/user_form_test.info
  2031. index 2f6919d..17ce34a 100644
  2032. --- a/drupal-7.57/modules/user/tests/user_form_test.info
  2033. +++ b/drupal-7.58/modules/user/tests/user_form_test.info
  2034. @@ -5,8 +5,8 @@ version = VERSION
  2035. core = 7.x
  2036. hidden = TRUE
  2037.  
  2038. -; Information added by Drupal.org packaging script on 2018-02-21
  2039. -version = "7.57"
  2040. +; Information added by Drupal.org packaging script on 2018-03-28
  2041. +version = "7.58"
  2042. project = "drupal"
  2043. -datestamp = "1519235152"
  2044. +datestamp = "1522264019"
  2045.  
  2046. diff --git a/drupal-7.57/modules/user/user.info b/drupal-7.58/modules/user/user.info
  2047. index 96f6527..83e2b8e 100644
  2048. --- a/drupal-7.57/modules/user/user.info
  2049. +++ b/drupal-7.58/modules/user/user.info
  2050. @@ -9,8 +9,8 @@ required = TRUE
  2051. configure = admin/config/people
  2052. stylesheets[all][] = user.css
  2053.  
  2054. -; Information added by Drupal.org packaging script on 2018-02-21
  2055. -version = "7.57"
  2056. +; Information added by Drupal.org packaging script on 2018-03-28
  2057. +version = "7.58"
  2058. project = "drupal"
  2059. -datestamp = "1519235152"
  2060. +datestamp = "1522264019"
  2061.  
  2062. diff --git a/drupal-7.57/profiles/minimal/minimal.info b/drupal-7.58/profiles/minimal/minimal.info
  2063. index 70b4b46..1b363ab 100644
  2064. --- a/drupal-7.57/profiles/minimal/minimal.info
  2065. +++ b/drupal-7.58/profiles/minimal/minimal.info
  2066. @@ -5,8 +5,8 @@ core = 7.x
  2067. dependencies[] = block
  2068. dependencies[] = dblog
  2069.  
  2070. -; Information added by Drupal.org packaging script on 2018-02-21
  2071. -version = "7.57"
  2072. +; Information added by Drupal.org packaging script on 2018-03-28
  2073. +version = "7.58"
  2074. project = "drupal"
  2075. -datestamp = "1519235152"
  2076. +datestamp = "1522264019"
  2077.  
  2078. diff --git a/drupal-7.57/profiles/standard/standard.info b/drupal-7.58/profiles/standard/standard.info
  2079. index 64a359f..a3fd9e2 100644
  2080. --- a/drupal-7.57/profiles/standard/standard.info
  2081. +++ b/drupal-7.58/profiles/standard/standard.info
  2082. @@ -24,8 +24,8 @@ dependencies[] = field_ui
  2083. dependencies[] = file
  2084. dependencies[] = rdf
  2085.  
  2086. -; Information added by Drupal.org packaging script on 2018-02-21
  2087. -version = "7.57"
  2088. +; Information added by Drupal.org packaging script on 2018-03-28
  2089. +version = "7.58"
  2090. project = "drupal"
  2091. -datestamp = "1519235152"
  2092. +datestamp = "1522264019"
  2093.  
  2094. diff --git a/drupal-7.57/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info b/drupal-7.58/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
  2095. index 5dc16b0..7a11e32 100644
  2096. --- a/drupal-7.57/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
  2097. +++ b/drupal-7.58/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
  2098. @@ -6,8 +6,8 @@ core = 7.x
  2099. hidden = TRUE
  2100. files[] = drupal_system_listing_compatible_test.test
  2101.  
  2102. -; Information added by Drupal.org packaging script on 2018-02-21
  2103. -version = "7.57"
  2104. +; Information added by Drupal.org packaging script on 2018-03-28
  2105. +version = "7.58"
  2106. project = "drupal"
  2107. -datestamp = "1519235152"
  2108. +datestamp = "1522264019"
  2109.  
  2110. diff --git a/drupal-7.57/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info b/drupal-7.58/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
  2111. index babc271..d2bd947 100644
  2112. --- a/drupal-7.57/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
  2113. +++ b/drupal-7.58/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
  2114. @@ -8,8 +8,8 @@ version = VERSION
  2115. core = 6.x
  2116. hidden = TRUE
  2117.  
  2118. -; Information added by Drupal.org packaging script on 2018-02-21
  2119. -version = "7.57"
  2120. +; Information added by Drupal.org packaging script on 2018-03-28
  2121. +version = "7.58"
  2122. project = "drupal"
  2123. -datestamp = "1519235152"
  2124. +datestamp = "1522264019"
  2125.  
  2126. diff --git a/drupal-7.57/profiles/testing/testing.info b/drupal-7.58/profiles/testing/testing.info
  2127. index 99eca14..e9fec6d 100644
  2128. --- a/drupal-7.57/profiles/testing/testing.info
  2129. +++ b/drupal-7.58/profiles/testing/testing.info
  2130. @@ -4,8 +4,8 @@ version = VERSION
  2131. core = 7.x
  2132. hidden = TRUE
  2133.  
  2134. -; Information added by Drupal.org packaging script on 2018-02-21
  2135. -version = "7.57"
  2136. +; Information added by Drupal.org packaging script on 2018-03-28
  2137. +version = "7.58"
  2138. project = "drupal"
  2139. -datestamp = "1519235152"
  2140. +datestamp = "1522264019"
  2141.  
  2142. diff --git a/drupal-7.57/themes/bartik/bartik.info b/drupal-7.58/themes/bartik/bartik.info
  2143. index a597359..7633680 100644
  2144. --- a/drupal-7.57/themes/bartik/bartik.info
  2145. +++ b/drupal-7.58/themes/bartik/bartik.info
  2146. @@ -34,8 +34,8 @@ regions[footer] = Footer
  2147. settings[shortcut_module_link] = 0
  2148.  
  2149.  
  2150. -; Information added by Drupal.org packaging script on 2018-02-21
  2151. -version = "7.57"
  2152. +; Information added by Drupal.org packaging script on 2018-03-28
  2153. +version = "7.58"
  2154. project = "drupal"
  2155. -datestamp = "1519235152"
  2156. +datestamp = "1522264019"
  2157.  
  2158. diff --git a/drupal-7.57/themes/garland/garland.info b/drupal-7.58/themes/garland/garland.info
  2159. index d06f67d..3a81d19 100644
  2160. --- a/drupal-7.57/themes/garland/garland.info
  2161. +++ b/drupal-7.58/themes/garland/garland.info
  2162. @@ -7,8 +7,8 @@ stylesheets[all][] = style.css
  2163. stylesheets[print][] = print.css
  2164. settings[garland_width] = fluid
  2165.  
  2166. -; Information added by Drupal.org packaging script on 2018-02-21
  2167. -version = "7.57"
  2168. +; Information added by Drupal.org packaging script on 2018-03-28
  2169. +version = "7.58"
  2170. project = "drupal"
  2171. -datestamp = "1519235152"
  2172. +datestamp = "1522264019"
  2173.  
  2174. diff --git a/drupal-7.57/themes/seven/seven.info b/drupal-7.58/themes/seven/seven.info
  2175. index d1a6930..ce455f5 100644
  2176. --- a/drupal-7.57/themes/seven/seven.info
  2177. +++ b/drupal-7.58/themes/seven/seven.info
  2178. @@ -13,8 +13,8 @@ regions[page_bottom] = Page bottom
  2179. regions[sidebar_first] = First sidebar
  2180. regions_hidden[] = sidebar_first
  2181.  
  2182. -; Information added by Drupal.org packaging script on 2018-02-21
  2183. -version = "7.57"
  2184. +; Information added by Drupal.org packaging script on 2018-03-28
  2185. +version = "7.58"
  2186. project = "drupal"
  2187. -datestamp = "1519235152"
  2188. +datestamp = "1522264019"
  2189.  
  2190. diff --git a/drupal-7.57/themes/stark/stark.info b/drupal-7.58/themes/stark/stark.info
  2191. index 420d8f3..6c1bc20 100644
  2192. --- a/drupal-7.57/themes/stark/stark.info
  2193. +++ b/drupal-7.58/themes/stark/stark.info
  2194. @@ -5,8 +5,8 @@ version = VERSION
  2195. core = 7.x
  2196. stylesheets[all][] = layout.css
  2197.  
  2198. -; Information added by Drupal.org packaging script on 2018-02-21
  2199. -version = "7.57"
  2200. +; Information added by Drupal.org packaging script on 2018-03-28
  2201. +version = "7.58"
  2202. project = "drupal"
  2203. -datestamp = "1519235152"
  2204. +datestamp = "1522264019"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement