summaryrefslogtreecommitdiff
path: root/www-ssl/inc/funktion_lang.php
diff options
context:
space:
mode:
authorcookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2006-12-01 15:20:38 +0000
committercookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2006-12-01 15:20:38 +0000
commit9c1117aae6a9dbdebf29f1d84220f425546dd484 (patch)
treeb503768d5338b2f7cff9bbb47733660a78ab3d1a /www-ssl/inc/funktion_lang.php
parentb91450e558455d704cd0d09504b503be9eacd590 (diff)
kompletter umbau euf ein dynamiesches menue
git-svn-id: svn://svn.cccv.de/engel-system@188 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/inc/funktion_lang.php')
-rwxr-xr-xwww-ssl/inc/funktion_lang.php28
1 files changed, 6 insertions, 22 deletions
diff --git a/www-ssl/inc/funktion_lang.php b/www-ssl/inc/funktion_lang.php
index 044da6a5..d5d3e144 100755
--- a/www-ssl/inc/funktion_lang.php
+++ b/www-ssl/inc/funktion_lang.php
@@ -1,9 +1,9 @@
<?PHP
-function Get_Text ($TextID)
+function Get_Text ($TextID, $NoError=FALSE)
{
- GLOBAL $con, $error_messages;
+ GLOBAL $con, $error_messages, $DEBUG;
if( !isset($_SESSION['Sprache']))
$_SESSION['Sprache'] = "EN";
@@ -17,6 +17,8 @@ function Get_Text ($TextID)
if( mysql_num_rows( $Erg) == 1)
return (@mysql_result($Erg, 0, "Text"));
+ elseif( $NoError && !$DEBUG)
+ return "";
else
{
array_push($error_messages, "Get_Text, '$TextID' found ". mysql_num_rows( $Erg). "x in Sprache Database Table for Language (".$_SESSION['Sprache'].")\n");
@@ -25,27 +27,9 @@ function Get_Text ($TextID)
}
-function Print_Text ($TextID)
+function Print_Text ($TextID, $NoError=FALSE)
{
- GLOBAL $con, $error_messages;
-
- if( !isset($_SESSION['Sprache']))
- $_SESSION['Sprache'] = "EN";
- if( $_SESSION['Sprache']=="")
- $_SESSION['Sprache']="EN";
- if( isset($_GET["SetLanguage"]))
- $_SESSION['Sprache']= $_GET["SetLanguage"];
-
- $SQL = "SELECT * FROM `Sprache` WHERE TextID=\"$TextID\" AND Sprache ='".$_SESSION['Sprache']."'";
- @$Erg = mysql_query($SQL, $con);
-
- if( mysql_num_rows( $Erg) == 1)
- echo nl2br(@mysql_result($Erg, 0, "Text"));
- else
- {
- array_push($error_messages, "Get_Text, '$TextID' found ". mysql_num_rows( $Erg). "x in Sprache Database Table for Language (".$_SESSION['Sprache'].")\n");
- echo "Error Data, '$TextID' found ". mysql_num_rows( $Erg). "x";
- }
+ echo Get_Text ($TextID, $NoError);
}
?>