Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
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
TeDomum
Nextcloud
Commits
329c714a
Commit
329c714a
authored
8 years ago
by
blizzz
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Correct name in Console Application.php
see changes :)
parent
b5c2b5e8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/private/Console/Application.php
+3
-3
3 additions, 3 deletions
lib/private/Console/Application.php
with
3 additions
and
3 deletions
lib/private/Console/Application.php
+
3
−
3
View file @
329c714a
...
@@ -88,10 +88,10 @@ class Application {
...
@@ -88,10 +88,10 @@ class Application {
require_once
__DIR__
.
'/../../../core/register_command.php'
;
require_once
__DIR__
.
'/../../../core/register_command.php'
;
if
(
$this
->
config
->
getSystemValue
(
'installed'
,
false
))
{
if
(
$this
->
config
->
getSystemValue
(
'installed'
,
false
))
{
if
(
\OCP\Util
::
needUpgrade
())
{
if
(
\OCP\Util
::
needUpgrade
())
{
$output
->
writeln
(
"
ownC
loud or one of the apps require upgrade - only a limited number of commands are available"
);
$output
->
writeln
(
"
Nextc
loud or one of the apps require upgrade - only a limited number of commands are available"
);
$output
->
writeln
(
"You may use your browser or the occ upgrade command to do the upgrade"
);
$output
->
writeln
(
"You may use your browser or the occ upgrade command to do the upgrade"
);
}
elseif
(
$this
->
config
->
getSystemValue
(
'maintenance'
,
false
))
{
}
elseif
(
$this
->
config
->
getSystemValue
(
'maintenance'
,
false
))
{
$output
->
writeln
(
"
ownC
loud is in maintenance mode - no app have been loaded"
);
$output
->
writeln
(
"
Nextc
loud is in maintenance mode - no app have been loaded"
);
}
else
{
}
else
{
OC_App
::
loadApps
();
OC_App
::
loadApps
();
foreach
(
\OC
::
$server
->
getAppManager
()
->
getInstalledApps
()
as
$app
)
{
foreach
(
\OC
::
$server
->
getAppManager
()
->
getInstalledApps
()
as
$app
)
{
...
@@ -107,7 +107,7 @@ class Application {
...
@@ -107,7 +107,7 @@ class Application {
}
}
}
}
}
else
{
}
else
{
$output
->
writeln
(
"
ownC
loud is not installed - only a limited number of commands are available"
);
$output
->
writeln
(
"
Nextc
loud is not installed - only a limited number of commands are available"
);
}
}
$input
=
new
ArgvInput
();
$input
=
new
ArgvInput
();
if
(
$input
->
getFirstArgument
()
!==
'check'
)
{
if
(
$input
->
getFirstArgument
()
!==
'check'
)
{
...
...
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