Browse Source

Merge branch '6.x' of git://github.com/Islandora/islandora into 6.x

Conflicts:
	CollectionClass.inc - chunk moved due to intro of XSLT-less collection view
	ObjectHelper.inc - chunk extracted into separate function
	fedora_repository.install - syntax error fixed...
pull/99/head
Adam Vessey 13 years ago
parent
commit
cfc6a4f6e7
  1. 2
      ObjectHelper.inc
  2. 4
      fedora_repository.install

2
ObjectHelper.inc

@ -1079,7 +1079,7 @@ class ObjectHelper {
* URIs beginning with 'info:fedora/' will have this beginning stripped * URIs beginning with 'info:fedora/' will have this beginning stripped
* off, to facilitate their use as PIDs. * off, to facilitate their use as PIDs.
*/ */
static function perform_ri_query($query, $type = 'itql', $limit = -1, $offset = 0) { static function perform_ri_query($query, $type = 'itql', $limit = -1, $offset = 0) {
//Setup the query options... //Setup the query options...
$options = array( $options = array(
'type' => 'tuples', 'type' => 'tuples',

4
fedora_repository.install

@ -63,8 +63,8 @@ function fedora_repository_requirements($phase) {
$requirements['curl']['severity'] = REQUIREMENT_OK; $requirements['curl']['severity'] = REQUIREMENT_OK;
} }
// Test for DOM // Test for DOM
$requirements['dom']['title'] = $t("PHP DOM XML extension library"); $requirements['dom']['title'] = $t("PHP DOM XML extension library");
if (!method_exists('DOMDocument', 'loadHTML')) { if (!method_exists('DOMDocument', 'loadHTML')) {
$requirements['dom']['value'] = $t("Not installed"); $requirements['dom']['value'] = $t("Not installed");
$requirements['dom']['severity'] = REQUIREMENT_ERROR; $requirements['dom']['severity'] = REQUIREMENT_ERROR;

Loading…
Cancel
Save