Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
UNL-CMS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ryan Klusman
UNL-CMS
Commits
0e28d530
Commit
0e28d530
authored
12 years ago
by
Tim Steiner
Browse files
Options
Downloads
Patches
Plain Diff
[gh-553] Fix some file includes after the module breakup
parent
446c4e9b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
profiles/unl_profile/unl_profile.install
+1
-1
1 addition, 1 deletion
profiles/unl_profile/unl_profile.install
sites/all/modules/unl_migration/unl_migration.module
+2
-2
2 additions, 2 deletions
sites/all/modules/unl_migration/unl_migration.module
with
3 additions
and
3 deletions
profiles/unl_profile/unl_profile.install
+
1
−
1
View file @
0e28d530
...
@@ -299,7 +299,7 @@ EOF;
...
@@ -299,7 +299,7 @@ EOF;
if
(
$row
->
migration_url
)
{
if
(
$row
->
migration_url
)
{
// If there's a site to migrate, add the job to the queue.
// If there's a site to migrate, add the job to the queue.
require_once
DRUPAL_ROOT
.
'/sites/all/modules/unl
/unl_migration.php'
;
require_once
drupal_get_path
(
'module'
,
'unl_migration'
)
.
'
/unl_migration.php'
;
$migration
=
new
Unl_Migration_Tool
(
$migration
=
new
Unl_Migration_Tool
(
$row
->
migration_url
,
$row
->
migration_url
,
$row
->
migration_path
,
$row
->
migration_path
,
...
...
This diff is collapsed.
Click to expand it.
sites/all/modules/unl_migration/unl_migration.module
+
2
−
2
View file @
0e28d530
...
@@ -54,8 +54,8 @@ function _unl_migration_cron_migration_step() {
...
@@ -54,8 +54,8 @@ function _unl_migration_cron_migration_step() {
$item
=
$queue
->
claimItem
(
120
);
$item
=
$queue
->
claimItem
(
120
);
$queue
->
deleteItem
(
$item
);
$queue
->
deleteItem
(
$item
);
if
(
unl_migration_queue_step
(
$item
->
data
))
{
if
(
unl_migration_queue_step
(
$item
->
data
))
{
module_load_include
(
'module'
,
'unl'
);
module_load_include
(
'module'
,
'unl
_multisite
'
);
unl_send_site_created_email
();
_
unl_
multisite_
send_site_created_email
();
}
}
}
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment