Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Stud.IP
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
Container registry
Model registry
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stud.IP
Stud.IP
Commits
d6684c43
Commit
d6684c43
authored
3 months ago
by
Jan-Hendrik Willms
Browse files
Options
Downloads
Patches
Plain Diff
remove confusing r/w/x, fixes
#5194
Closes
#5194
Merge request
!3898
parent
f52b20b4
No related branches found
No related tags found
1 merge request
!3898
remove confusing r/w/x, fixes #5194
Pipeline
#31147
passed
3 months ago
Stage: build
Stage: checks
Stage: analyse
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
templates/filesystem/permission_enabled_folder/edit.php
+3
-3
3 additions, 3 deletions
templates/filesystem/permission_enabled_folder/edit.php
templates/filesystem/timed_folder/edit.php
+2
-2
2 additions, 2 deletions
templates/filesystem/timed_folder/edit.php
with
5 additions
and
5 deletions
templates/filesystem/permission_enabled_folder/edit.php
+
3
−
3
View file @
d6684c43
<label>
<label>
<input
name=
"perm_read"
type=
"checkbox"
value=
"1"
<?
if
(
$folder
->
isReadable
())
echo
'checked'
;
?>
>
<input
name=
"perm_read"
type=
"checkbox"
value=
"1"
<?
if
(
$folder
->
isReadable
())
echo
'checked'
;
?>
>
<strong>
r
</strong>
-
<?=
_
(
'Lesen (Dateien können heruntergeladen werden)'
)
?>
<?=
_
(
'Lesen (Dateien können heruntergeladen werden)'
)
?>
</label>
</label>
<label>
<label>
<input
name=
"perm_write"
type=
"checkbox"
value=
"1"
<?
if
(
$folder
->
isWritable
())
echo
'checked'
;
?>
>
<input
name=
"perm_write"
type=
"checkbox"
value=
"1"
<?
if
(
$folder
->
isWritable
())
echo
'checked'
;
?>
>
<strong>
w
</strong>
-
<?=
_
(
'Schreiben (Dateien können hochgeladen werden)'
)
?>
<?=
_
(
'Schreiben (Dateien können hochgeladen werden)'
)
?>
</label>
</label>
<label>
<label>
<input
name=
"perm_visible"
type=
"checkbox"
value=
"1"
<?
if
(
$folder
->
isVisible
())
echo
'checked'
;
?>
>
<input
name=
"perm_visible"
type=
"checkbox"
value=
"1"
<?
if
(
$folder
->
isVisible
())
echo
'checked'
;
?>
>
<strong>
x
</strong>
-
<?=
_
(
'Sichtbarkeit (Ordner wird angezeigt)'
)
?>
<?=
_
(
'Sichtbarkeit (Ordner wird angezeigt)'
)
?>
</label>
</label>
This diff is collapsed.
Click to expand it.
templates/filesystem/timed_folder/edit.php
+
2
−
2
View file @
d6684c43
...
@@ -15,9 +15,9 @@
...
@@ -15,9 +15,9 @@
</label>
</label>
<label>
<label>
<input
name=
"perm_read"
type=
"checkbox"
value=
"1"
<?
if
(
isset
(
$folder
->
data_content
[
'permission'
])
&&
$folder
->
data_content
[
'permission'
]
&
4
)
echo
'checked'
;
?>
>
<input
name=
"perm_read"
type=
"checkbox"
value=
"1"
<?
if
(
isset
(
$folder
->
data_content
[
'permission'
])
&&
$folder
->
data_content
[
'permission'
]
&
4
)
echo
'checked'
;
?>
>
<strong>
r
</strong>
-
<?=
_
(
'Lesen (Dateien können heruntergeladen werden)'
)
?>
<?=
_
(
'Lesen (Dateien können heruntergeladen werden)'
)
?>
</label>
</label>
<label>
<label>
<input
name=
"perm_write"
type=
"checkbox"
value=
"1"
<?
if
(
isset
(
$folder
->
data_content
[
'permission'
])
&&
$folder
->
data_content
[
'permission'
]
&
2
)
echo
'checked'
;
?>
>
<input
name=
"perm_write"
type=
"checkbox"
value=
"1"
<?
if
(
isset
(
$folder
->
data_content
[
'permission'
])
&&
$folder
->
data_content
[
'permission'
]
&
2
)
echo
'checked'
;
?>
>
<strong>
w
</strong>
-
<?=
_
(
'Schreiben (Dateien können hochgeladen werden)'
)
?>
<?=
_
(
'Schreiben (Dateien können hochgeladen werden)'
)
?>
</label>
</label>
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