projects
/
fusionforge
/
fusionforge.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
project home
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f4c6dd3
)
Fix wrong var in exit_error (squal_exit)
author
Alain Peyrat
<aljeux@free.fr>
Thu, 31 Mar 2011 16:47:44 +0000
(16:47 +0000)
committer
Alain Peyrat
<aljeux@free.fr>
Thu, 31 Mar 2011 16:47:44 +0000
(16:47 +0000)
src/common/include/squal_exit.php
patch
|
blob
|
history
diff --git
a/src/common/include/squal_exit.php
b/src/common/include/squal_exit.php
index f969439028227dc3e09887d7fbbac19e747a864b..e75a07243da391fc3b4b246142e27fe0dbd043ab 100644
(file)
--- a/
src/common/include/squal_exit.php
+++ b/
src/common/include/squal_exit.php
@@
-30,7
+30,7
@@
* @param string Error toptab
*/
function exit_error($title,$toptab='') {
- print 'ERROR - '.$t
ext
;
+ print 'ERROR - '.$t
itle
;
exit;
}
@@
-72,7
+72,7
@@
function exit_missing_param($url='',$missing_params=array(),$toptab='') {
* @param string toptab needed for navigation
*/
function exit_disabled($toptab='') {
- exit_error('DISABLED FEATURE');
+ exit_error('DISABLED FEATURE');
}
?>