summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 63af277)
raw | patch | inline | side by side (parent: 63af277)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 9 Aug 2007 10:31:42 +0000 (10:31 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 9 Aug 2007 10:31:42 +0000 (10:31 +0000) |
This function seems to be usefull outside setup too.
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@7025 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@7025 594d385d-05f5-0310-b6e9-bd551577e9d8
include/functions.inc | patch | blob | history | |
setup/class_setup.inc | patch | blob | history |
diff --git a/include/functions.inc b/include/functions.inc
index 50a9318b10ef939889aff16d829b16e5fc42685f..15df054ccbb5e41d94779cb75eae6378024a3243 100644 (file)
--- a/include/functions.inc
+++ b/include/functions.inc
}
}
+/* Returns contents of the given POST variable and check magic quotes settings */
+function get_post($name)
+{
+ if(!isset($_POST[$name])){
+ trigger_error("Requested POST value (".$name.") does not exists, you should add a check to prevent this message.");
+ return(FALSE);
+ }
+ if(get_magic_quotes_gpc()){
+ return(stripcslashes($_POST[$name]));
+ }else{
+ return($_POST[$name]);
+ }
+}
+
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
?>
diff --git a/setup/class_setup.inc b/setup/class_setup.inc
index 9fd17ee2ffa0e213355fcdcc643a44fee691ded9..753751c52537d7e43e28845244038b07f8eea244 100644 (file)
--- a/setup/class_setup.inc
+++ b/setup/class_setup.inc
*/
-/* Returns contents of the given POST variable and check magic quotes settings */
-function get_post($name)
-{
- if(!isset($_POST[$name])){
- trigger_error("Requested POST value (".$name.") does not exists, you should add a check to prevent this message.");
- return(FALSE);
- }
- if(get_magic_quotes_gpc()){
- return(stripcslashes($_POST[$name]));
- }else{
- return($_POST[$name]);
- }
-}
-
require_once("class_setupStep.inc");