Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NextcloudPlugin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stud.IP
Plugins
NextcloudPlugin
Merge requests
!1
made plugin compatible with Stud.IP 5.5 and PHP 8
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
made plugin compatible with Stud.IP 5.5 and PHP 8
studip-5.5
into
master
Overview
3
Commits
6
Pipelines
0
Changes
4
Merged
made plugin compatible with Stud.IP 5.5 and PHP 8
Moritz Strohm
requested to merge
studip-5.5
into
master
Jul 25, 2024
Overview
3
Commits
6
Pipelines
0
Changes
4
0
0
Merge request reports
Compare
master
version 3
53684899
11 months ago
version 2
6c6d9c4d
11 months ago
version 1
16fb0200
Jul 25, 2024
master (base)
and
latest version
latest version
e7bd463d
6 commits,
11 months ago
version 3
53684899
5 commits,
11 months ago
version 2
6c6d9c4d
4 commits,
11 months ago
version 1
16fb0200
3 commits,
Jul 25, 2024
4 files
+
6
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
controllers/file.php
+
2
−
2
View file @ e7bd463d
Edit in single-file editor
Open in Web IDE
Show full file
@@ -114,7 +114,7 @@ class FileController extends PluginController
PageLayout
::
postError
(
sprintf
(
dgettext
(
'NextcloudPlugin'
,
'Ein Fehler trat auf beim Aktualisieren der Datei „%s“.'
),
htmlReady
(
$this
->
file
_ref
->
name
)
htmlReady
(
$this
->
file
->
getFile
name
()
)
),
$this
->
errors
);
@@ -122,7 +122,7 @@ class FileController extends PluginController
PageLayout
::
postSuccess
(
sprintf
(
dgettext
(
'NextcloudPlugin'
,
'Die Datei „%s“ wurde aktualisiert!'
),
htmlReady
(
$this
->
file
_ref
->
name
)
htmlReady
(
$this
->
file
->
getFile
name
()
)
)
);
}
Loading