Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Eric Rasmussen
UNL-CMS
Commits
25d3f60f
Commit
25d3f60f
authored
Nov 07, 2012
by
Eric Rasmussen
Browse files
Merge branch 'develop' into issue-468
Conflicts (resolved): sites/all/modules/unl/unl.info
parents
17b2c99c
0e5adc27
Changes
354
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.txt
View file @
25d3f60f
Drupal 7.16, 2012-10-17
-----------------------
- Fixed security issues (Arbitrary PHP code execution and information
disclosure). See SA-CORE-2012-003.
Drupal 7.15, 2012-08-01
-----------------------
- Introduced a 'user_password_reset_timeout' variable to allow the 24-hour
...
...
README.md
View file @
25d3f60f
...
...
@@ -103,6 +103,10 @@ In this example the web root is /Library/WebServer/Documents and Apache runs as
- Fix so that drush pulls in the correct uri parameter. See http://drupal.org/node/1331106
*
entity/entity.module, entity/modules/callbacks.inc
- Add 'uri callback' for file entities. See http://drupal.org/node/1481372#comment-6529650
*
workbench_moderation.module
- Fix broken books in workbench_moderation_node_presave(). See http://drupal.org/node/1505060
...
...
includes/bootstrap.inc
View file @
25d3f60f
...
...
@@ -8,7 +8,7 @@
/**
* The current system version.
*/
define
(
'VERSION'
,
'7.1
5
'
);
define
(
'VERSION'
,
'7.1
6
'
);
/**
* Core API compatibility.
...
...
includes/install.core.inc
View file @
25d3f60f
...
...
@@ -295,12 +295,11 @@ function install_begin_request(&$install_state) {
else
{
$task
=
NULL
;
// Since previous versions of Drupal stored database connection information
// in the 'db_url' variable, we should never let an installation proceed if
// this variable is defined and the settings file was not verified above
// (otherwise we risk installing over an existing site whose settings file
// has not yet been updated).
if
(
!
empty
(
$GLOBALS
[
'db_url'
]))
{
// Do not install over a configured settings.php. Check the 'db_url'
// variable in addition to 'databases', since previous versions of Drupal
// used that (and we do not want to allow installations on an existing site
// whose settings file has not yet been updated).
if
(
!
empty
(
$GLOBALS
[
'databases'
])
||
!
empty
(
$GLOBALS
[
'db_url'
]))
{
throw
new
Exception
(
install_already_done_error
());
}
}
...
...
modules/aggregator/aggregator.info
View file @
25d3f60f
...
...
@@ -7,8 +7,8 @@ files[] = aggregator.test
configure
=
admin
/
config
/
services
/
aggregator
/
settings
stylesheets
[
all
][]
=
aggregator
.
css
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
modules/aggregator/tests/aggregator_test.info
View file @
25d3f60f
...
...
@@ -5,8 +5,8 @@ version = VERSION
core
=
7.
x
hidden
=
TRUE
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
modules/block/block.info
View file @
25d3f60f
...
...
@@ -6,8 +6,8 @@ core = 7.x
files
[]
=
block
.
test
configure
=
admin
/
structure
/
block
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
modules/block/tests/block_test.info
View file @
25d3f60f
...
...
@@ -5,8 +5,8 @@ version = VERSION
core
=
7.
x
hidden
=
TRUE
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
modules/block/tests/themes/block_test_theme/block_test_theme.info
View file @
25d3f60f
...
...
@@ -13,8 +13,8 @@ regions[footer] = Footer
regions[highlighted] = Highlighted
regions[help] = Help
; Information added by drupal.org packaging script on 2012-
08-01
version = "7.1
5
"
; Information added by drupal.org packaging script on 2012-
10-17
version = "7.1
6
"
project = "drupal"
datestamp = "13
4383932
7"
datestamp = "13
5050856
7"
modules/blog/blog.info
View file @
25d3f60f
...
...
@@ -5,8 +5,8 @@ version = VERSION
core
=
7.
x
files
[]
=
blog
.
test
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
modules/book/book.info
View file @
25d3f60f
...
...
@@ -7,8 +7,8 @@ files[] = book.test
configure
=
admin
/
content
/
book
/
settings
stylesheets
[
all
][]
=
book
.
css
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
modules/color/color.info
View file @
25d3f60f
...
...
@@ -5,8 +5,8 @@ version = VERSION
core
=
7.
x
files
[]
=
color
.
test
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
modules/comment/comment.info
View file @
25d3f60f
...
...
@@ -9,8 +9,8 @@ files[] = comment.test
configure
=
admin
/
content
/
comment
stylesheets
[
all
][]
=
comment
.
css
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
modules/contact/contact.info
View file @
25d3f60f
...
...
@@ -6,8 +6,8 @@ core = 7.x
files
[]
=
contact
.
test
configure
=
admin
/
structure
/
contact
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
modules/contextual/contextual.info
View file @
25d3f60f
...
...
@@ -5,8 +5,8 @@ version = VERSION
core
=
7.
x
files
[]
=
contextual
.
test
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
modules/dashboard/dashboard.info
View file @
25d3f60f
...
...
@@ -7,8 +7,8 @@ files[] = dashboard.test
dependencies
[]
=
block
configure
=
admin
/
dashboard
/
customize
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
modules/dblog/dblog.info
View file @
25d3f60f
...
...
@@ -5,8 +5,8 @@ version = VERSION
core
=
7.
x
files
[]
=
dblog
.
test
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
modules/field/field.info
View file @
25d3f60f
...
...
@@ -10,8 +10,8 @@ dependencies[] = field_sql_storage
required
=
TRUE
stylesheets
[
all
][]
=
theme
/
field
.
css
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
modules/field/modules/field_sql_storage/field_sql_storage.info
View file @
25d3f60f
...
...
@@ -7,8 +7,8 @@ dependencies[] = field
files
[]
=
field_sql_storage
.
test
required
=
TRUE
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
modules/field/modules/list/list.info
View file @
25d3f60f
...
...
@@ -7,8 +7,8 @@ dependencies[] = field
dependencies
[]
=
options
files
[]
=
tests
/
list
.
test
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
08
-
01
version
=
"7.1
5
"
;
Information
added
by
drupal
.
org
packaging
script
on
2012
-
10
-
17
version
=
"7.1
6
"
project
=
"drupal"
datestamp
=
"13
4383932
7"
datestamp
=
"13
5050856
7"
Prev
1
2
3
4
5
…
18
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment