Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
3de69ff8
Commit
3de69ff8
authored
10 years ago
by
Robin Appelman
Browse files
Options
Downloads
Patches
Plain Diff
Don't register the call when rendering error pages
parent
dd7b8e45
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/private/template.php
+5
-4
5 additions, 4 deletions
lib/private/template.php
lib/private/templatelayout.php
+3
-1
3 additions, 1 deletion
lib/private/templatelayout.php
with
8 additions
and
5 deletions
lib/private/template.php
+
5
−
4
View file @
3de69ff8
...
...
@@ -29,7 +29,7 @@ require_once __DIR__.'/template/functions.php';
class
OC_Template
extends
\OC\Template\Base
{
private
$renderas
;
// Create a full page?
private
$path
;
// The path to the template
private
$headers
=
array
();
//custom headers
private
$headers
=
array
();
//custom headers
protected
$app
;
// app id
/**
...
...
@@ -37,6 +37,7 @@ class OC_Template extends \OC\Template\Base {
* @param string $app app providing the template
* @param string $name of the template file (without suffix)
* @param string $renderas = ""; produce a full page
* @param bool $registerCall = true
* @return OC_Template object
*
* This function creates an OC_Template object.
...
...
@@ -45,14 +46,14 @@ class OC_Template extends \OC\Template\Base {
* according layout. For now, renderas can be set to "guest", "user" or
* "admin".
*/
public
function
__construct
(
$app
,
$name
,
$renderas
=
""
)
{
public
function
__construct
(
$app
,
$name
,
$renderas
=
""
,
$registerCall
=
true
)
{
// Read the selected theme from the config file
$theme
=
OC_Util
::
getTheme
();
// Read the detected formfactor and use the right file name.
$fext
=
self
::
getFormFactorExtension
();
$requesttoken
=
OC
::
$server
->
getSession
()
?
OC_Util
::
callRegister
()
:
''
;
$requesttoken
=
(
OC
::
$server
->
getSession
()
and
$registerCall
)
?
OC_Util
::
callRegister
()
:
''
;
$parts
=
explode
(
'/'
,
$app
);
// fix translation when app is something like core/lostpassword
$l10n
=
OC_L10N
::
get
(
$parts
[
0
]);
...
...
@@ -253,7 +254,7 @@ class OC_Template extends \OC\Template\Base {
* Warning: All data passed to $hint needs to get sanitized using OC_Util::sanitizeHTML
*/
public
static
function
printErrorPage
(
$error_msg
,
$hint
=
''
)
{
$content
=
new
OC_Template
(
''
,
'error'
,
'error'
);
$content
=
new
\
OC_Template
(
''
,
'error'
,
'error'
,
false
);
$errors
=
array
(
array
(
'error'
=>
$error_msg
,
'hint'
=>
$hint
));
$content
->
assign
(
'errors'
,
$errors
);
$content
->
printPage
();
...
...
This diff is collapsed.
Click to expand it.
lib/private/templatelayout.php
+
3
−
1
View file @
3de69ff8
...
...
@@ -59,7 +59,9 @@ class OC_TemplateLayout extends OC_Template {
$this
->
assign
(
'user_uid'
,
OC_User
::
getUser
()
);
$this
->
assign
(
'appsmanagement_active'
,
strpos
(
OC_Request
::
requestUri
(),
OC_Helper
::
linkToRoute
(
'settings_apps'
))
===
0
);
$this
->
assign
(
'enableAvatars'
,
\OC_Config
::
getValue
(
'enable_avatars'
,
true
));
}
else
if
(
$renderas
==
'guest'
||
$renderas
==
'error'
)
{
}
else
if
(
$renderas
==
'error'
)
{
parent
::
__construct
(
'core'
,
'layout.guest'
,
''
,
false
);
}
else
if
(
$renderas
==
'guest'
)
{
parent
::
__construct
(
'core'
,
'layout.guest'
);
}
else
{
parent
::
__construct
(
'core'
,
'layout.base'
);
...
...
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