Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
marcus-lodspeakr
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
uib-ub
Spesialsamlingene
marcus-lodspeakr
Merge requests
!16
Resolve "Introduce PSR-4 autoloading"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Introduce PSR-4 autoloading"
12-introduce-psr-4-autoloading
into
master
Overview
0
Commits
21
Pipelines
0
Changes
4
Merged
Stein Magne Bjorklund
requested to merge
12-introduce-psr-4-autoloading
into
master
3 years ago
Overview
0
Commits
21
Pipelines
0
Changes
4
Expand
Closes #12
Edited
3 years ago
by
Stein Magne Bjorklund
0
0
Merge request reports
Viewing commit
8b5af581
Show latest version
4 files
+
2
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
8b5af581
Autoload MetaDb.php
· 8b5af581
Stein Magne Bjorklund
authored
3 years ago
classes/modules/redirectModule.php
+
1
−
1
Options
<?php
declare
(
strict_types
=
1
);
namespace
uib\ub\loadspeakr\modules
;
use
uib\ub\loadspeakr\MetaDb
;
require_once
(
'abstractModule.php'
);
@@ -16,7 +17,6 @@ class RedirectModule extends abstractModule
global
$endpoints
;
global
$lodspk
;
require_once
(
$conf
[
'home'
]
.
'classes/MetaDb.php'
);
$metaDb
=
new
MetaDb
(
$conf
[
'metadata'
][
'db'
][
'location'
]);
return
true
;
Loading