4images Forum & Community

4images Modifications / Modifikationen => Mods & Plugins (Releases & Support) => Topic started by: martrix on April 18, 2005, 07:04:37 PM

Title: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: martrix on April 18, 2005, 07:04:37 PM
Originally posted/Author: Cr@zy Sash

Eigentlich mehr ne Spielerei als ein Mod. *gg* ;)
Well not really a mod. *gg*  ;)


Übersicht: / Overview:


Mit diesem Mod kannst du den aktuellen Monat als Kalender anzeigen lassen. /
You may show the actual month as a calendar with this mod

Geänderte Dateien: / Changed files:


- includes/page_header.php
- lang/<deine Sprache>/main.php
- templates/<dein Template>/style.css

Neue Dateien: / New files:


- templates/<dein Template>/calendar.html

Installation

WICHTIG: Mache vorher von diesen Dateien ein Backup
IMPORTANT: Before implementing this mod - back-up your files

1.)
Öffne die Datei includes/page_header.php und füge folgenen Code ein: /
Open includes/page_header.php and add this code:

Code: [Select]
//-----------------------------------------------------
//--- Calendar ----------------------------------------
//-----------------------------------------------------
$dat = time();
$dat0 = getdate($dat);
$datj=$dat0[month]." ".$dat0[year];
if($calshow==""){$calshow=$dat0[month]." ".$dat0[year];}
$dath=$calshow;
$calshow="";
$dat5="1 ".$dath;
$dat1 = getdate(strtotime($dat5));
$dat2 = getdate(strtotime($dat5." -1 month"));
$datr=$dat2[month]." ".$dat2[year];
$dat3 = getdate(strtotime($dat5." +1 month"));
$datv=$dat3[month]." ".$dat3[year];
$erster=$dat1[wday];

if($erster!=1){
  if($erster==0){$erster=7;}
  $calendar_data = "<tr>";
  for($i=0;$i<$erster-1;$i++){$calendar_data .= "<td class=\"smalltext\">&nbsp;</td>";}
  }
for($i=1;$i<=31;$i++){
  $dat4 = getdate(strtotime($i." ".$dath));
  $heute=$dat4[wday];
  if($heute==0){$heute=7;}
  if($dat1[mon]==$dat4[mon]){
    $stil="calat";
    $dum1=$dat0[mday].".".$dat0[mon].".".$dat0[year];
    $dum2=$dat4[mday].".".$dat4[mon].".".$dat4[year];
    if($dum1==$dum2){
      if(($heute==6) || ($heute==7)){$stil="calht";}else{$stil="calht";}
      }
      else{
      if(($heute==6) || ($heute==7)){$stil="calwe";}else{$stil="smalltext";}
      }
    if ($i<=9){$k="0";}else{$k="";}
    if($heute==1){$calendar_data .= "<tr>";}
    $calendar_data .= "<td align=\"center\" class=\"".$stil."\">".$k.$i."</td>";
    if($heute==7){$calendar_data .= "</tr>";}
    $j=$heute;
    }
  }
if ($j!=7){
  for ($i=0;$i<7-$j;$i++){$calendar_data .= "<td class=\"smalltext\"></td>";}
  $calendar_data .= "</tr>";
  }
$calendar_data .= "</table></td></tr></table></td></tr></table>";

1.a) for 4images 1.7 add this code below:
Code: [Select]
$calendar = $site_template->parse_template("calendar");
$site_template->register_vars(array(
    "calendar" => $calendar,
    "calendar_data" => $calendar_data,
    "lang_calendar" => $lang['lang_calendar'],
    "lang_mo" => $lang['lang_mo'],
    "lang_di" => $lang['lang_di'],
    "lang_mi" => $lang['lang_mi'],
    "lang_do" => $lang['lang_do'],
    "lang_fr" => $lang['lang_fr'],
    "lang_sa" => $lang['lang_sa'],
    "lang_so" => $lang['lang_so']
  ));
  unset($calendar);

1.b) for 4images 1.7.1 add this code below:
Code: [Select]
$site_template->register_vars(array(
   "calendar_data" => $calendar_data,
   "lang_calendar" => $lang['lang_calendar'],
   "lang_mo" => $lang['lang_mo'],
   "lang_di" => $lang['lang_di'],
   "lang_mi" => $lang['lang_mi'],
   "lang_do" => $lang['lang_do'],
   "lang_fr" => $lang['lang_fr'],
   "lang_sa" => $lang['lang_sa'],
   "lang_so" => $lang['lang_so']
 ));
$site_template->register_vars("calendar", $site_template->parse_template("calendar"));


2.)
Öffne die lang/<deine Sprache>/main.php und füge folgendes ein: /
Open lang/<yourlanguage>/main.php and add this code:
     2a) Deutsch
Code: [Select]
//-----------------------------------------------------
//--- Calendar ---------------------------------------
//-----------------------------------------------------
$lang['lang_calendar'] = "Kalender";
$lang['lang_mo'] = "Mo";
$lang['lang_di'] = "Di";
$lang['lang_mi'] = "Mi";
$lang['lang_do'] = "Do";
$lang['lang_fr'] = "Fr";
$lang['lang_sa'] = "Sa";
$lang['lang_so'] = "So";
     2b) English
Code: [Select]
//-----------------------------------------------------
//--- Calendar ---------------------------------------
//-----------------------------------------------------
$lang['lang_calendar'] = "Calendar";
$lang['lang_mo'] = "Mo";
$lang['lang_di'] = "Tu";
$lang['lang_mi'] = "We";
$lang['lang_do'] = "Th";
$lang['lang_fr'] = "Fr";
$lang['lang_sa'] = "Sa";
$lang['lang_so'] = "Su";

3.)
Öffne templates/<dein Template>/style.css und füge das ein:
Open templates/<yourtemplate>/style.css and add the following:

Code: [Select]
.calht {
  color: Black;
  background-color:#FFCC00;
  font-family: verdana,arial,helvetica,sans-serif;
  font-size: xx-small;
  font-weight: bold;
}

.calwe {
  color: Red;
  font-family: verdana,arial,helvetica,sans-serif;
  font-size: xx-small;
}

4.)
Erstelle eine neue Datei templates/<dein Template>/calendar.html
Create a new file templates/<yourtemplate>/calendar.html

Code: [Select]
<table width="100%" border="0" cellspacing="0" cellpadding="1">
  <tr>
    <td class="head1">
      <table width="130" border="0" cellspacing="0" cellpadding="3">
        <tr>
          <td valign="top" class="head1">{lang_calendar}</td>
        </tr>
        <tr>
          <td valign="top" class="row2">
            <table border="0" cellpadding="0" cellspacing="0" width="100%">
              <tr>
                <td align="center" class="smalltext"><b>{lang_mo}</b></td>
                <td align="center" class="smalltext"><b>{lang_di}</b></td>
                <td align="center" class="smalltext"><b>{lang_mi}</b></td>
                <td align="center" class="smalltext"><b>{lang_do}</b></td>
                <td align="center" class="smalltext"><b>{lang_fr}</b></td>
                <td align="center" class="smalltext"><b>{lang_sa}</b></td>
                <td align="center" class="smalltext"><b>{lang_so}</b></td>
              </tr>
              {calendar_data}
             

Fertig!
Done!

Nun kannst du {calendar} überall in deinen Template nutzen.
You may now use {calendar} anywhere in your templates.

DEMO: http://crazy-pics.de.vu/
DEMO2:   ;) http://photo.overlord.cz
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: police22 on April 19, 2005, 04:26:45 AM
Hey,
I just installed this "MOD" and im getting an error that is caused by the code that goes in the page header.php. i have the line in bold below

Originally posted/Author: Cr@zy Sash

1.)
Öffne die Datei includes/page_header.php und füge folgenen Code ein: /
Open includes/page_header.php and add this code:

//-----------------------------------------------------
//--- Calendar ----------------------------------------
//-----------------------------------------------------
....
    if($dum1==$dum2){
      if(($heute==6) || ($heute==7))else
      }
      else{
      if(($heute==6) || ($heute==7))else
      }
....
[

This is the error: Parse error: parse error, unexpected T_ELSE in C:\DartezWeb\DartezPix\includes\page_header.php on line 73
i tried deleting it and others but get more errors. not sure on what to fix.
BTW. Just thought of this.. if this is an old mod from Cr@zy Sash, then has it been converted to 1.7.1 or is it the same.. sounds like an version error???  :?:
Thanks
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: V@no on April 19, 2005, 04:46:36 AM
that is screwed up... I dont even know what those conditions supposed to do....
martrix, would u look up in your page_header and repost whatever you have between:
Quote
for($i=1;$i<=31;$i++){
...
}
:?:
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: michi-w. on April 19, 2005, 06:01:53 AM
Ich habe das gleiche Problem (police22), was kann ich tun?
V@no Antwort habe ich nicht verstanden.

I have the same problem (police22), which I can do?
I did not understand V@no answer.


Gruß
michi-w.
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: police22 on April 19, 2005, 06:44:20 AM
Ich habe das gleiche Problem (police22), was kann ich tun?
V@no Antwort habe ich nicht verstanden.

I have the same problem (police22), which I can do?
I did not understand V@no answer.


Gruß
michi-w.

He was talking to Matrix to post his page_header.php between the 2 lines he mentioned to see how it is and how its working..
what version do you have? 1.7.1.???   :?:
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: martrix on April 19, 2005, 08:37:20 AM
Well I did re-post the original mod I had saved from the old forum changing just some "gramatical" things ;)

A typo could happen whilst copy-pasting the code :(

I'll check that as soon as I have access to my files...
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: michi-w. on April 19, 2005, 01:07:53 PM
Hello,

language is german, script is 1.7.
 
My page_header.php file, without mod.
http://www.web-upload.de/page_header.txt

Sorry for my bad english and thanks for the assistance.

Gruß
michi-w.

 
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: martrix on April 19, 2005, 08:51:06 PM
Sorry guys! :oops:
Somehow all the {blablablasd f} parts of the code disappeared...

Please redo step 1. and 4.

BTW... my Page_header-Calendar-MOD Code looks like this, so you might like to use this:
The only difference: Instead of "Calendar" it shows the actual Month and year...  8)

Code: [Select]
//--- Calendar ---
$dat = time();
$dat0 = getdate($dat);

if ($dat0[mon]=="1"){$month_txt=$lang['lang_jan'];}
if ($dat0[mon]=="2"){$month_txt=$lang['lang_feb'];}
if ($dat0[mon]=="3"){$month_txt=$lang['lang_mar'];}
if ($dat0[mon]=="4"){$month_txt=$lang['lang_apr'];}
if ($dat0[mon]=="5"){$month_txt=$lang['lang_may'];}
if ($dat0[mon]=="6"){$month_txt=$lang['lang_jun'];}
if ($dat0[mon]=="7"){$month_txt=$lang['lang_jul'];}
if ($dat0[mon]=="8"){$month_txt=$lang['lang_aug'];}
if ($dat0[mon]=="9"){$month_txt=$lang['lang_sep'];}
if ($dat0[mon]=="10"){$month_txt=$lang['lang_oct'];}
if ($dat0[mon]=="11"){$month_txt=$lang['lang_nov'];}
if ($dat0[mon]=="12"){$month_txt=$lang['lang_dec'];}


$datj=$dat0[month]." ".$dat0[year];
if($calshow==""){$calshow=$dat0[month]." ".$dat0[year];}
$dath=$calshow;
$calshow="";
$dat5="1 ".$dath;
$dat1 = getdate(strtotime($dat5));
$dat2 = getdate(strtotime($dat5." -1 month"));
$datr=$dat2[month]." ".$dat2[year];
$dat3 = getdate(strtotime($dat5." +1 month"));
$datv=$dat3[month]." ".$dat3[year];
$erster=$dat1[wday];

if($erster!=1){
  if($erster==0){$erster=7;}
  $calendar_data = "<tr>";
  for($i=0;$i<$erster-1;$i++){$calendar_data .= "<td class=\"smalltext\">&nbsp;</td>";}
  }
for($i=1;$i<=31;$i++){
  $dat4 = getdate(strtotime($i." ".$dath));
  $heute=$dat4[wday];
  if($heute==0){$heute=7;}
  if($dat1[mon]==$dat4[mon]){
    $stil="calat";
    $dum1=$dat0[mday].".".$dat0[mon].".".$dat0[year];
    $dum2=$dat4[mday].".".$dat4[mon].".".$dat4[year];
    if($dum1==$dum2){
      if(($heute==6) || ($heute==7)){$stil="calht";}else{$stil="calht";}
      }
      else{
      if(($heute==6) || ($heute==7)){$stil="calwe";}else{$stil="smalltext";}
      }
    if ($i<=9){$k="0";}else{$k="";}
    if($heute==1){$calendar_data .= "<tr>";}
    $calendar_data .= "<td align=\"center\" class=\"".$stil."\">".$k.$i."</td>";
    if($heute==7){$calendar_data .= "</tr>";}
    $j=$heute;
    }
  }
if ($j!=7){
  for ($i=0;$i<7-$j;$i++){$calendar_data .= "<td class=\"smalltext\"></td>";}
  $calendar_data .= "</tr>";
  }
$calendar_data .= "</table>";

$calendar = $site_template->parse_template("calendar");
$site_template->register_vars(array(
    "calendar" => $calendar,
    "calendar_data" => $calendar_data,
    "lang_calendar_head" => $month_txt." ".$dat0[year],
    "lang_mo" => $lang['lang_mo'],
    "lang_di" => $lang['lang_di'],
    "lang_mi" => $lang['lang_mi'],
    "lang_do" => $lang['lang_do'],
    "lang_fr" => $lang['lang_fr'],
    "lang_sa" => $lang['lang_sa'],
    "lang_so" => $lang['lang_so'],
  ));
  unset($calendar);

the lang part:

English:
Code: [Select]
//--- Calendar ---
$lang['lang_calendar'] = "Calendar";
$lang['lang_mo'] = "Mo";
$lang['lang_di'] = "Tu";
$lang['lang_mi'] = "We";
$lang['lang_do'] = "Th";
$lang['lang_fr'] = "Fr";
$lang['lang_sa'] = "Sa";
$lang['lang_so'] = "Su";
$lang['lang_jan'] = "January";
$lang['lang_feb'] = "February";
$lang['lang_mar'] = "March";
$lang['lang_apr'] = "April";
$lang['lang_may'] = "May";
$lang['lang_jun'] = "June";
$lang['lang_jul'] = "July";
$lang['lang_aug'] = "August";
$lang['lang_sep'] = "September";
$lang['lang_oct'] = "October";
$lang['lang_nov'] = "November";
$lang['lang_dec'] = "December";

German:
Code: [Select]
//--- Calendar ---
$lang['lang_calendar'] = "Kalender";
$lang['lang_mo'] = "Mo";
$lang['lang_di'] = "Di";
$lang['lang_mi'] = "Mi";
$lang['lang_do'] = "Do";
$lang['lang_fr'] = "Fr";
$lang['lang_sa'] = "Sa";
$lang['lang_so'] = "So";
$lang['lang_jan'] = "Januar";
$lang['lang_feb'] = "Februar";
$lang['lang_mar'] = "März";
$lang['lang_apr'] = "April";
$lang['lang_may'] = "Mai";
$lang['lang_jun'] = "Juni";
$lang['lang_jul'] = "Juli";
$lang['lang_aug'] = "August";
$lang['lang_sep'] = "September";
$lang['lang_oct'] = "Oktober";
$lang['lang_nov'] = "November";
$lang['lang_dec'] = "Dezember";

and the template:

Code: [Select]
<table border="0" cellpadding="0" cellspacing="0" width="100%">
 <tr>
  <td class="head2" height="20" width="135" colspan="7"> <img src="{template_url}/images/spacer.gif" alt="" width="4" height="4" />::&nbsp;{lang_calendar_head}</td>
 </tr>
 <tr>
  <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
 </tr>
 <tr>
  <td align="center" class="smalltext"><b>{lang_mo}</b></td>
  <td align="center" class="smalltext"><b>{lang_di}</b></td>
  <td align="center" class="smalltext"><b>{lang_mi}</b></td>
  <td align="center" class="smalltext"><b>{lang_do}</b></td>
  <td align="center" class="smalltext"><b>{lang_fr}</b></td>
  <td align="center" class="smalltext"><b>{lang_sa}</b></td>
  <td align="center" class="smalltext"><b>{lang_so}</b></td>
 </tr>
{calendar_data}
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: JensF on April 19, 2005, 09:01:48 PM
Is there a way to put in dates, birthdays or other in the calender???

This where great....
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: martrix on April 19, 2005, 09:11:20 PM
If you meant this "globaly" then yes  :wink: Everything you can imagine is possible... but...

...but if you did mean that question to this MOD: not without completely re-writing it  :(

This MOD only shows the days of the actual month in a table, nothing else...
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: police22 on April 19, 2005, 10:45:25 PM
Sorry guys! :oops:
Somehow all the {blablablasd f} parts of the code disappeared...

Please redo step 1. and 4.
...snip
Thanks Matrix  :) Gonna try installing again right now
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: police22 on April 19, 2005, 11:15:37 PM
 :evil: I dont know whats up with it.. got the new stuff install, but when loaded in the browser all there is a blue box with a :: inside think from the calendar.html tmp...  everything seems to look good..
{calendar} is what your suppose to put in the template where you want it, Right :?:
Take a look at http://dartezpix.servepics.com
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: martrix on April 19, 2005, 11:50:29 PM
strange... I just tested all the steps on a fresh 4images install and it did work fine...  :|

The only thing I may ask you for is to reload this post and try to repeat all the steps again.
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: michi-w. on April 20, 2005, 02:28:30 AM
It`s ok, thank you!

Bei mir ist nun alles in Ordnung, vielen Dank!

Gruß
michi-w.
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: police22 on April 20, 2005, 03:48:18 AM
strange... I just tested all the steps on a fresh 4images install and it did work fine...  :|
That wouldn't happen to be 1.7?

The only thing I may ask you for is to reload this post and try to repeat all the steps again.

Well i run 1.7.1 and it is NOT :cry: :cry: working...
HOWEVER. i did still have a back up copy of 1.7 in another folder and installed it.. Yep it worked, minus some formating issues..

NOW!!! my question which you probably already know.

What do/should i change to make this work with 1.7.1 if there is a possibility to do it at all.....

Thanks.
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: michi-w. on April 20, 2005, 04:10:17 AM
calendar.html is a new file, and insert {calendar} in the template files, php insert before ?>, everything else is clear.

Gruß
michi-w.
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: V@no on April 20, 2005, 04:13:05 AM
What do/should i change to make this work with 1.7.1 if there is a possibility to do it at all.....
in page_header.php replace
Code: [Select]
$calendar = $site_template->parse_template("kalender");
$site_template->register_vars(array(
    "calendar" => $calendar,
    "calendar_data" => $calendar_data,
    "lang_calendar" => $lang['lang_calendar'],
    "lang_mo" => $lang['lang_mo'],
    "lang_di" => $lang['lang_di'],
    "lang_mi" => $lang['lang_mi'],
    "lang_do" => $lang['lang_do'],
    "lang_fr" => $lang['lang_fr'],
    "lang_sa" => $lang['lang_sa'],
    "lang_so" => $lang['lang_so']
  ));
  unset($calendar);
with:
Code: [Select]
$site_template->register_vars(array(
    "calendar_data" => $calendar_data,
    "lang_calendar" => $lang['lang_calendar'],
    "lang_mo" => $lang['lang_mo'],
    "lang_di" => $lang['lang_di'],
    "lang_mi" => $lang['lang_mi'],
    "lang_do" => $lang['lang_do'],
    "lang_fr" => $lang['lang_fr'],
    "lang_sa" => $lang['lang_sa'],
    "lang_so" => $lang['lang_so']
  ));
$site_template->register_vars("calendar", $site_template->parse_template("kalender"));
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: police22 on April 20, 2005, 05:24:44 AM
What do/should i change to make this work with 1.7.1 if there is a possibility to do it at all.....
in page_header.php replace
Code: [Select]
$calendar = $site_template->parse_template("kalender");
SNIP...
  unset($calendar);
with:
Code: [Select]
$site_template->register_vars(array(
SNIP...
$site_template->register_vars("calendar", $site_template->parse_template("kalender"));

That worked.. of course V@no.. good job.. just had to change the "kalender" to "calendar" for english. Now just trying to play with the template and colors...

Good Job!!
Kudos to Cr@zy Sash for the original code.. and to Matrix for providing it again...

BTW.. quick question, V@no.. why would in part of the code like the 'calendar' i meantioned be spelled differently while in the same language.
Like This line!!!
$site_template->register_vars("calendar", $site_template->parse_template("kalender"));
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: V@no on April 20, 2005, 05:30:27 AM
BTW.. quick question, V@no.. why would in part of the code like the 'calendar' i meantioned be spelled differently while in the same language.
Like This line!!!
$site_template->register_vars("calendar", $site_template->parse_template("kalender"));
This question should go to Cr@zy Sash ;)
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: police22 on April 20, 2005, 05:32:05 AM
BTW.. quick question, V@no.. why would in part of the code like the 'calendar' i meantioned be spelled differently while in the same language.
Like This line!!!
$site_template->register_vars("calendar", $site_template->parse_template("kalender"));
This question should go to Cr@zy Sash ;)

 :lol: :lol: That is what i thought.. just the way it was coded.. hehehe.. ok.. just wondering... Thanks again
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: martrix on April 20, 2005, 09:44:41 PM
It might be, that I somehow messed that up when trying to find why it didn't work for you :(

Because I was playing 'round with that to test if it could be THE reason  :roll:

Just refreshed that in the first post...

and I did split step 1 for 4images v1.7 and v1.7.1 (the 1.7.1 variation does not work with my 1.7...)

Templates and colors is your part of the job ;)
Cr@zy Sash did provide us a working construction... and you have to change it to fit your needs  :D
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: police22 on April 20, 2005, 10:54:06 PM
It might be, that I somehow messed that up when trying to find why it didn't work for you :(

Because I was playing 'round with that to test if it could be THE reason  :roll:

Just refreshed that in the first post...

and I did split step 1 for 4images v1.7 and v1.7.1 (the 1.7.1 variation does not work with my 1.7...)

Templates and colors is your part of the job ;)
Cr@zy Sash did provide us a working construction... and you have to change it to fit your needs  :D
Oh i know.. the colors and stuff.. just was saying.. i think i got it working pretty good.. i like.. change couple things but it works..  you can see it at http://dartezpix.servepics.com
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: V@no on April 21, 2005, 12:59:38 AM
and I did split step 1 for 4images v1.7 and v1.7.1 (the 1.7.1 variation does not work with my 1.7...)
that is strange...and it should work with v1.7 as well...are u sure u didnt forgot something when tested it? ;)
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: martrix on April 21, 2005, 09:16:03 AM
 @ V@no:
of course I don't know if I forgot something when testing :D
but was tooooo tired to think about that :wink:

 @ police22
i think i got it working pretty good..
Nice to read that!  8)
But your link doesn't seem to work :(
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: b.o.fan on April 28, 2005, 02:51:11 PM
hello, i find out this REQ.

interessting! is that possible with this mod?

http://www.4homepages.de/forum/index.php?topic=7130.0
wrothe by K!pp
----//----
----//----

hallo ich habe diesen REQ gefunden

http://www.4homepages.de/forum/index.php?topic=7130.0
geschrieben von K!pp
sehr interessant. ist das mit diesem MOD möglich?

MfG

b.o.fan
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: michi-w. on April 28, 2005, 03:23:54 PM
Im Moment wird nur das Datum angezeigt:
http://www.web-upload.de/index.php
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: b.o.fan on April 28, 2005, 03:27:51 PM
das ist mir bekannt.

jemannd anderes?!?
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: police22 on April 28, 2005, 06:27:29 PM
@ V@no:
of course I don't know if I forgot something when testing :D
but was tooooo tired to think about that :wink:

 @ police22
i think i got it working pretty good..
Nice to read that!  8)
But your link doesn't seem to work :(
WHAT!!!  8O 8O What do you mean doesn't work.. this one? http://dartezpix.servepics.com ???? it should work.. everyone else uses it.. IT BETTER WORK!! :lol:
Please try again...  You know my signature comes from that site. so if it works... the link should.
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: michi-w. on April 29, 2005, 12:42:35 AM
One question!

The weekend days was bigger than working days, if the browser of small fonts, is the fonts equivalent.
I want the font equivalent big, how is gone that?

(English I cannot do better)

Ich habe da noch eine Frage!

Die Wochenenden werden etwa doppelt so groß dargestellt wie die Werktage, wenn ich die Browser Schrift auf ganz klein stelle, sind sie alle gleich groß.

Ich hätte sie gerne gleich groß, wo/wie wird das gemacht?

Gruß
michi-w.
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: michi-w. on May 09, 2005, 10:07:39 AM
One question!

The weekend days was bigger than working days, if the browser of small fonts, is the fonts equivalent.
I want the font equivalent big, how is gone that?

(English I cannot do better)

Ich habe da noch eine Frage!

Die Wochenenden werden etwa doppelt so groß dargestellt wie die Werktage, wenn ich die Browser Schrift auf ganz klein stelle, sind sie alle gleich groß.

Ich hätte sie gerne gleich groß, wo/wie wird das gemacht?

Gruß
michi-w.
Liegt vermutlich an der Bildschirmauflösung, bei meinem MCR wird es richtig dargestellt, beim TFT nicht, obwohl die Auflösgung gleich ist, muss die Spalte wohl etwas breiter machen.
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: martrix on May 09, 2005, 04:28:10 PM
Ist schon komisch... hm.

Die Fonts des Kalenders kannst du im stylesheet ändern:

Code: [Select]
.calht {
  color: Black;
  background-color:#FFCC00;
  font-family: verdana,arial,helvetica,sans-serif;
  font-size: xx-small;
  font-weight: bold;
}

.calwe {
  color: Red;
  font-family: verdana,arial,helvetica,sans-serif;
  font-size: xx-small;
}

statt xx-small kanst du einen fixierten Pixel-Wert eingeben... dann sollte es i.O. sein.

Es kann auch dadurch entstanden sein, dass eines Fett dargestellt wird und eines normal - dies kannst du auch im style.css ändern und anpassen...
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: michi-w. on May 09, 2005, 07:23:11 PM
Nun gehts, habe die fonts auf 11px festgesetzt, vielen Dank!

Gruß
michi-w.
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: ch€ri{Bi}² on June 03, 2005, 09:50:55 PM
i don't know if my question has been answered... i just speak french and english... i don't understand dutch (at this moment)!

 :?: Is there a way to add buttons for navigation (last month / next month)?

and

 :?: Can we set up a link which send towards the seach or the pictures of the wanted day?
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: martrix on June 04, 2005, 11:54:21 AM
hi cheribi,

there is alway a way to create quite anything you can imagine... but
this "mod" is just a simple snippet showing the actual month with it`s days... not more.

The functions you mentioned would require a mayor rewrite of that or an absolutely different mod  :wink:

(BTW: the guys here don`t speak dutch, but german  :wink: )
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: ch€ri{Bi}² on June 04, 2005, 12:31:39 PM
 :oops: Sorry for the language!! Anyway I do not understand either German or Dutch!!!
 But it is not the problem...

If the modification of this code is so complicated, I am going to work on another MOD with the features which I want : calendar with navigation, link towards pictures, and other things... :roll: any idea?
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: Xandra on June 04, 2005, 02:38:10 PM
:oops: Sorry for the language!! Anyway I do not understand either German or Dutch!!!
 But it is not the problem...

If the modification of this code is so complicated, I am going to work on another MOD with the features which I want : calendar with navigation, link towards pictures, and other things... :roll: any idea?

It is not really complicated, I even got it to work  :lol:

Regarding a calendar with navigation, I made a sample here for you to see, just ignore the clock because that is another javascript - the calendar is of javascript as well, if someone could make a MOD out of it, I will post the coding here.

http://www.d-zynez.net/grfx/img341.htm
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: Gray on July 20, 2005, 11:59:56 AM
Habe bei mir die überarbeitete Variante für Version 1.7.1 eingebaut. Das Skript funzt, allerdings wird weder
der Monat noch das Jahr angezeigt nur "::" . Weiterhin ist mir aufgefallen das bei mir dass aktuelle Datum
im Firefox nicht farblich hervorgehoben wird, bei anderen scheint das nicht so zu sein.
Kann mir da vielleicht jemand helfen?  :?:
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: bibabobu on August 15, 2005, 11:34:55 PM
i think there is a mistake in the code for the template (i think in the page_header.php).
because i can not display anything correct under the calendar. (see my rss feed link jumps to the left side of my box gallery).
But if i put this link code above my calender it displays correct. :roll:

i want to have the rss feed button link under my calender in the right box of my gallery.
How do i manage this :?:
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: martrix on August 15, 2005, 11:55:08 PM
Hi bibabobu,

well, I don't see any problems there - the 3 tables opened in the calendar-template are closed by the script after generating the calendar-data...
Could you send me your actual home.html?
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: bibabobu on August 16, 2005, 12:08:01 AM
hi martrix,

here are the files.
sorry i have forgotten.
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: martrix on August 16, 2005, 12:40:34 AM
Is it possible, that you did have an additional (useless) <table> tag in your home.html?

Try this...
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: bibabobu on August 16, 2005, 07:55:38 AM
Thanks martrix.

No. If i take your modified home.html get this what you can see actual at my homepage. :?

 :cry:


P.S. i even think that there is parsed w wrong tag in the page_header.php code so that the tables under the calendar are incorrect.
Did you try once to fix something under the calendar in your homepage???

EDIT:

I hope i solved the prob.
i random deleted some tags in the page_header_php in $calendar tag variable.
for my surprise now it is working for me. the rss feed link is in the right position.

EDIT2:

The Problem is still the same if i want to put something under the rss link :cry:
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: martrix on August 16, 2005, 09:43:48 AM
This is the first time I read, that random deleting of tags helped out of a problem :lol:

But if it worked well - then it is fine.

The more sophisticated way would be analyzing "why" the code doesn't show up like you want and then tweaking exactly the needed piece of code ;)
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: bibabobu on November 11, 2005, 12:53:29 AM
Oh, i still have problems with showing the calendar. By the way the function of it is perfect. It has shown correctlythe last 2 months.
These are the errors of my enabled error messages:
Code: [Select]
Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 505

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 506

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 507

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 508

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 509

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 510

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 511

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 512

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 513

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 514

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 515

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 516

Notice: Use of undefined constant month - assumed 'month' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 519

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 519

Notice: Undefined variable: calshow in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 520

Notice: Use of undefined constant month - assumed 'month' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 520

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 520

Notice: Use of undefined constant month - assumed 'month' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 526

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 526

Notice: Use of undefined constant month - assumed 'month' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 528

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 528

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 529

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 567

AND THIS IS THE PART OF MY PAGE-HEADER FILE WITH THE CALENDAR CODE IN
Code: [Select]
//-----------------------------------------------------
//--- Calendar ---------START--------------------------
//-----------------------------------------------------
$dat = time();
$dat0 = getdate($dat);

if ($dat0[mon]=="1"){$month_txt=$lang['lang_jan'];}
if ($dat0[mon]=="2"){$month_txt=$lang['lang_feb'];}
if ($dat0[mon]=="3"){$month_txt=$lang['lang_mar'];}
if ($dat0[mon]=="4"){$month_txt=$lang['lang_apr'];}
if ($dat0[mon]=="5"){$month_txt=$lang['lang_may'];}
if ($dat0[mon]=="6"){$month_txt=$lang['lang_jun'];}
if ($dat0[mon]=="7"){$month_txt=$lang['lang_jul'];}
if ($dat0[mon]=="8"){$month_txt=$lang['lang_aug'];}
if ($dat0[mon]=="9"){$month_txt=$lang['lang_sep'];}
if ($dat0[mon]=="10"){$month_txt=$lang['lang_oct'];}
if ($dat0[mon]=="11"){$month_txt=$lang['lang_nov'];}
if ($dat0[mon]=="12"){$month_txt=$lang['lang_dec'];}


$datj=$dat0[month]." ".$dat0[year];
if($calshow==""){$calshow=$dat0[month]." ".$dat0[year];}
$dath=$calshow;
$calshow="";
$dat5="1 ".$dath;
$dat1 = getdate(strtotime($dat5));
$dat2 = getdate(strtotime($dat5." -1 month"));
$datr=$dat2[month]." ".$dat2[year];
$dat3 = getdate(strtotime($dat5." +1 month"));
$datv=$dat3[month]." ".$dat3[year];
$erster=$dat1[wday];

if($erster!=1){
  if($erster==0){$erster=7;}
  $calendar_data = "<tr>";
  for($i=0;$i<$erster-1;$i++){$calendar_data .= "<td class=\"smalltext\">&nbsp;</td>";}
  }
for($i=1;$i<=31;$i++){
  $dat4 = getdate(strtotime($i." ".$dath));
  $heute=$dat4[wday];
  if($heute==0){$heute=7;}
  if($dat1[mon]==$dat4[mon]){
    $stil="calat";
    $dum1=$dat0[mday].".".$dat0[mon].".".$dat0[year];
    $dum2=$dat4[mday].".".$dat4[mon].".".$dat4[year];
    if($dum1==$dum2){
      if(($heute==6) || ($heute==7)){$stil="calht";}else{$stil="calht";}
      }
      else{
      if(($heute==6) || ($heute==7)){$stil="calwe";}else{$stil="smalltext";}
      }
    if ($i<=9){$k="0";}else{$k="";}
    if($heute==1){$calendar_data .= "<tr>";}
    $calendar_data .= "<td align=\"center\" class=\"".$stil."\">".$k.$i."</td>";
    if($heute==7){$calendar_data .= "</tr>";}
    $j=$heute;
    }
  }
if ($j!=7){
  for ($i=0;$i<7-$j;$i++){$calendar_data .= "<td class=\"smalltext\"></td>";}
  $calendar_data .= "</tr>";
  }
$calendar_data .= "</table>";

$calendar = $site_template->parse_template("calendar");
$site_template->register_vars(array(
    "calendar" => $calendar,
    "calendar_data" => $calendar_data,
    "lang_calendar_head" => $month_txt." ".$dat0[year],
    "lang_mo" => $lang['lang_mo'],
    "lang_di" => $lang['lang_di'],
    "lang_mi" => $lang['lang_mi'],
    "lang_do" => $lang['lang_do'],
    "lang_fr" => $lang['lang_fr'],
    "lang_sa" => $lang['lang_sa'],
    "lang_so" => $lang['lang_so'],
  ));
  unset($calendar);
$calendar_data .= " ";
$site_template->register_vars(array(
   "calendar_data" => $calendar_data,
   "lang_calendar" => $lang['lang_calendar'],
   "lang_mo" => $lang['lang_mo'],
   "lang_di" => $lang['lang_di'],
   "lang_mi" => $lang['lang_mi'],
   "lang_do" => $lang['lang_do'],
   "lang_fr" => $lang['lang_fr'],
   "lang_sa" => $lang['lang_sa'],
   "lang_so" => $lang['lang_so']
));
$site_template->register_vars("calendar", $site_template->parse_template("calendar"));
//-----------------------------------------------------
//--- Calendar ---------ENDE---------------------------
//-----------------------------------------------------
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: bibabobu on November 18, 2005, 01:16:56 AM
Hi!
Once more.
I think that there is missing something in the original MOD  posting because i am receiving strange template problems.

In the calendar.html
Code: [Select]
<table width="100%" border="0" cellspacing="0" cellpadding="1">
  <tr>
    <td class="head1">
      <table width="130" border="0" cellspacing="0" cellpadding="3">
        <tr>
          <td valign="top" class="head1">{lang_calendar}</td>
        </tr>
        <tr>
          <td valign="top" class="row2">
            <table border="0" cellpadding="0" cellspacing="0" width="100%">
              <tr>
                <td align="center" class="smalltext"><b>{lang_mo}</b></td>
                <td align="center" class="smalltext"><b>{lang_di}</b></td>
                <td align="center" class="smalltext"><b>{lang_mi}</b></td>
                <td align="center" class="smalltext"><b>{lang_do}</b></td>
                <td align="center" class="smalltext"><b>{lang_fr}</b></td>
                <td align="center" class="smalltext"><b>{lang_sa}</b></td>
                <td align="center" class="smalltext"><b>{lang_so}</b></td>
              </tr>
              {calendar_data}
is missing
Code: [Select]
</table>
</table>
But if I add these two lines I get an template mistake.
So i think there is a template mistake in the page_header.php

Please could someone help me with that. Thanks.
 :cry:
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: mawenzi on November 18, 2005, 01:45:28 AM
die komplette calendar.html ... mit allen geschlossenen Tabellen müsste doch so aussehen ... (ohne zu wissen wie die Zeilen und Spalten in {calendar_data} gehändelt werden) ... :
Code: [Select]
<table width="100%" border="0" cellspacing="0" cellpadding="1">
  <tr>
    <td class="head1">
      <table width="130" border="0" cellspacing="0" cellpadding="3">
        <tr>
          <td valign="top" class="head1">{lang_calendar}</td>
        </tr>
        <tr>
          <td valign="top" class="row2">
            <table border="0" cellpadding="0" cellspacing="0" width="100%">
              <tr>
                <td align="center" class="smalltext"><b>{lang_mo}</b></td>
                <td align="center" class="smalltext"><b>{lang_di}</b></td>
                <td align="center" class="smalltext"><b>{lang_mi}</b></td>
                <td align="center" class="smalltext"><b>{lang_do}</b></td>
                <td align="center" class="smalltext"><b>{lang_fr}</b></td>
                <td align="center" class="smalltext"><b>{lang_sa}</b></td>
                <td align="center" class="smalltext"><b>{lang_so}</b></td>
              </tr>
              {calendar_data}
            </table>
      </td></tr></table>
</td></tr></table>

mawenzi
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: Olphi on December 08, 2005, 02:46:17 PM
Habe bei mir die überarbeitete Variante für Version 1.7.1 eingebaut. Das Skript funzt, allerdings wird weder
der Monat noch das Jahr angezeigt nur "::" . Weiterhin ist mir aufgefallen das bei mir dass aktuelle Datum
im Firefox nicht farblich hervorgehoben wird, bei anderen scheint das nicht so zu sein.
Kann mir da vielleicht jemand helfen?  :?:

Bei mir wird zwar das aktuelle Datum mit Firefox und Netscape hervorgehoben, aber die Zeile mit den Tagen und die Daten werden nicht so fabrlich hervorgehoben wie mit dem IE!

Hat niemand eine Idee?

Danke für die Hilfe...
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: Olphi on December 12, 2005, 08:25:45 PM
What do/should i change to make this work with 1.7.1 if there is a possibility to do it at all.....
in page_header.php replace
Code: [Select]
$calendar = $site_template->parse_template("kalender");
$site_template->register_vars(array(
    "calendar" => $calendar,
    "calendar_data" => $calendar_data,
    "lang_calendar" => $lang['lang_calendar'],
    "lang_mo" => $lang['lang_mo'],
    "lang_di" => $lang['lang_di'],
    "lang_mi" => $lang['lang_mi'],
    "lang_do" => $lang['lang_do'],
    "lang_fr" => $lang['lang_fr'],
    "lang_sa" => $lang['lang_sa'],
    "lang_so" => $lang['lang_so']
  ));
  unset($calendar);
with:
Code: [Select]
$site_template->register_vars(array(
    "calendar_data" => $calendar_data,
    "lang_calendar" => $lang['lang_calendar'],
    "lang_mo" => $lang['lang_mo'],
    "lang_di" => $lang['lang_di'],
    "lang_mi" => $lang['lang_mi'],
    "lang_do" => $lang['lang_do'],
    "lang_fr" => $lang['lang_fr'],
    "lang_sa" => $lang['lang_sa'],
    "lang_so" => $lang['lang_so']
  ));
$site_template->register_vars("calendar", $site_template->parse_template("kalender"));


Hi @all

If you miss the month, then put this line in the page_header.php
Quote
"lang_calendar_head" => $month_txt." ".$dat0[year],


Like this:
Quote
$site_template->register_vars(array(
    "calendar_data" => $calendar_data,
    "lang_calendar" => $lang['lang_calendar'],
    "lang_calendar_head" => $month_txt." ".$dat0[year],
    "lang_mo" => $lang['lang_mo'],
    "lang_di" => $lang['lang_di'],
    "lang_mi" => $lang['lang_mi'],
    "lang_do" => $lang['lang_do'],
    "lang_fr" => $lang['lang_fr'],
    "lang_sa" => $lang['lang_sa'],
    "lang_so" => $lang['lang_so']
 ));
$site_template->register_vars("calendar", $site_template->parse_template("kalender"));

Greets  :D
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: police22 on January 09, 2006, 05:43:31 AM
I looked and did try a search but didnt not find on this calendar on how to change the days..

Instead of Running Monday, Tuesday, Wednesday etc..  Isnt Sunday usually the start of the week?

So how would i change to start Sunday, Monday, Tuesday, etc...

i did try to move the mo, tu around and stuff.. but didnt work.. just showed the date on the wrong day.

IF anyone can help would be apreciated.
Thanks In Advanced.
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: waleed on April 08, 2006, 12:45:14 AM
am in middle east and its date 8 already but still says 7
how to fix that ?
and i want to make SA first day of the week how ?
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: b.o.fan on September 27, 2006, 02:42:18 PM
hello @ all.

i have make a little mod for my site. (at this moment only on my local system)

my question:

should i publish this?

in my mod you can make events! / and the user. but the user-events must activate form a admin!

greets
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: martrix on September 27, 2006, 04:22:36 PM
of course you should publish that ;)
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: b.o.fan on September 27, 2006, 05:06:38 PM
ok. a demo. it is not PERFECT :)


www.wartenaufden15.de/calender.php

it's mulitlanguage!

in the version, only admin's can post events. but i work for the users. and a messege on the index.php will come in the future.

when i ready with my calender.php usw. i will post it. i thin 1 or 2 days :)
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: JensF on September 27, 2006, 06:44:02 PM
Hi,

das ist cool. Gibt es dem zum selber installieren???
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: michi-w. on September 28, 2006, 12:18:02 AM
Würde mich auch interessieren, allerdings zeigt mein Internet Explorer Fehler auf der Seite an, der Mod müsste also noch einmal überarbeitet werden.
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: ccsakuweb on September 28, 2006, 01:22:02 PM
ok. a demo. it is not PERFECT :)


www.wartenaufden15.de/calender.php

it's mulitlanguage!

in the version, only admin's can post events. but i work for the users. and a messege on the index.php will come in the future.

when i ready with my calender.php usw. i will post it. i thin 1 or 2 days :)
great! I'm searching that!
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: b.o.fan on September 28, 2006, 11:39:31 PM
ok. a demo. it is not PERFECT :)


www.wartenaufden15.de/calender.php

it's mulitlanguage!

in the version, only admin's can post events. but i work for the users. and a messege on the index.php will come in the future.

when i ready with my calender.php usw. i will post it. i thin 1 or 2 days :)
great! I'm searching that!

but my php is not the best ;) and i think V@no will say: ohh no... please use the 4images db-querys.... but i don't know how... it too difficult to me :)
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: ccsakuweb on October 12, 2006, 10:13:28 AM
 :D Good luck! I'm sure that you will do it very well  :lol:
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: insane on March 26, 2007, 12:45:36 PM
Oh, i still have problems with showing the calendar. By the way the function of it is perfect. It has shown correctlythe last 2 months.
These are the errors of my enabled error messages:
Code: [Select]
Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 505

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 506

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 507

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 508

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 509

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 510

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 511

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 512

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 513

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 514

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 515

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 516

Notice: Use of undefined constant month - assumed 'month' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 519

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 519

Notice: Undefined variable: calshow in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 520

Notice: Use of undefined constant month - assumed 'month' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 520

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 520

Notice: Use of undefined constant month - assumed 'month' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 526

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 526

Notice: Use of undefined constant month - assumed 'month' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 528

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 528

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 529

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 567

I got the same problem 1.7.4. Otherwise it would work fine.

How do i get it to work with 1.7.4?
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: urmasmuld on August 16, 2007, 02:55:40 PM
Oh, i still have problems with showing the calendar. By the way the function of it is perfect. It has shown correctlythe last 2 months.
These are the errors of my enabled error messages:
Code: [Select]
Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 505

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 506

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 507

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 508

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 509

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 510

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 511

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 512

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 513

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 514

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 515

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 516

Notice: Use of undefined constant month - assumed 'month' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 519

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 519

Notice: Undefined variable: calshow in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 520

Notice: Use of undefined constant month - assumed 'month' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 520

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 520

Notice: Use of undefined constant month - assumed 'month' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 526

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 526

Notice: Use of undefined constant month - assumed 'month' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 528

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 528

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 529

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 542

Notice: Use of undefined constant mday - assumed 'mday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 543

Notice: Use of undefined constant wday - assumed 'wday' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 538

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant mon - assumed 'mon' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 540

Notice: Use of undefined constant year - assumed 'year' in /is/htdocs/wp1015398_0TDZ7CIHLH/www/galerie/includes/page_header.php on line 567

I got the same problem 1.7.4. Otherwise it would work fine.

How do i get it to work with 1.7.4?

I have same question ???
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: thunderstrike on August 16, 2007, 04:06:42 PM
This calendar linux base ... no work on windows ... right way is:

Code: [Select]
$dat0 = mktime(0, 0, 0, date("m", $dat)  , date("d", $dat)-$sub, date("Y", $dat));
$dat0 = (isset($dat0)) ? getdate($dat0) : "";

2nd line of page_header.php file.

Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: griffdsp on September 30, 2008, 03:41:33 PM
I am having problems with this mod. It displays correctly everywhere but the error is only showing up when you go on the "search" functions and the "new images" function. It throws up the following error before displaying the correct content at the bottom. i am using version 1.7.6. I have tried all the fixes mentioned in this topic but to no avail so can anyone help


Code: [Select]
Notice: Use of undefined constant mon - assumed 'mon' in /is/bla bla/www/gallery/includes/page_header.php on line 505

Notice: Use of undefined constant mon - assumed 'mon' in /is/bla bla/www/gallery/includes/page_header.php on line 506

Notice: Use of undefined constant mon - assumed 'mon' in /is/bla bla/www/gallery/includes/page_header.php on line 507

Notice: Use of undefined constant mon - assumed 'mon' in /is/bla bla/www/gallery/includes/page_header.php on line 508

(etc etc etc)

Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: V@no on October 01, 2008, 02:13:13 AM
in step 1 use this code instead:

//-----------------------------------------------------
//--- Calendar ----------------------------------------
//-----------------------------------------------------
$dat = time();
$dat0 = getdate($dat);
$datj=$dat0['month']." ".$dat0['year'];
$calshow="";
if($calshow==""){$calshow=$dat0['month']." ".$dat0['year'];}
$dath=$calshow;
$dat5="1 ".$dath;
$dat1 = getdate(strtotime($dat5));
$dat2 = getdate(strtotime($dat5." -1 month"));
$datr=$dat2['month']." ".$dat2['year'];
$dat3 = getdate(strtotime($dat5." +1 month"));
$datv=$dat3['month']." ".$dat3['year'];
$erster=$dat1['wday'];

if($erster!=1){
  if($erster==0){$erster=7;}
  $calendar_data = "<tr>";
  for($i=0;$i<$erster-1;$i++){$calendar_data .= "<td class=\"smalltext\">&nbsp;</td>";}
  }
for($i=1;$i<=31;$i++){
  $dat4 = getdate(strtotime($i." ".$dath));
  $heute=$dat4['wday'];
  if($heute==0){$heute=7;}
  if($dat1['mon']==$dat4['mon']){
    $stil="calat";
    $dum1=$dat0['mday'].".".$dat0['mon'].".".$dat0['year'];
    $dum2=$dat4['mday'].".".$dat4['mon'].".".$dat4['year'];
    if($dum1==$dum2){
      if(($heute==6) || ($heute==7)){$stil="calht";}else{$stil="calht";}
      }
      else{
      if(($heute==6) || ($heute==7)){$stil="calwe";}else{$stil="smalltext";}
      }
    if ($i<=9){$k="0";}else{$k="";}
    if($heute==1){$calendar_data .= "<tr>";}
    $calendar_data .= "<td align=\"center\" class=\"".$stil."\">".$k.$i."</td>";
    if($heute==7){$calendar_data .= "</tr>";}
    $j=$heute;
    }
  }
if ($j!=7){
  for ($i=0;$i<7-$j;$i++){$calendar_data .= "<td class=\"smalltext\"></td>";}
  $calendar_data .= "</tr>";
  }
$calendar_data .= "</table></td></tr></table></td></tr></table>";
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: griffdsp on October 01, 2008, 07:02:20 PM
problem is almost solved. i needed to remove some of the table tags at the bottom to keep to the design of the page but its still showing 3 errors. 2 pertaining to line 510.
From what i can tell its now not showing the month just the year. These are the errors.

Notice: Undefined variable: month_txt - assumed 'mon' in /is/bla bla/www/gallery/includes/page_header.php on line 510

Notice: Use of undefined constant year - assumed 'year' in /is/bla bla/www/gallery/includes/page_header.php on line 510

This is the actual line 10

"lang_calendar_head" => $month_txt." ".$dat0[year],

there is also another error showing

Notice: Undefined variable: calshow in /is/bla bla/www/gallery/includes/page_header.php on line 464

this is my actual line 464

f($calshow==""){$calshow=$dat0['month']." ".$dat0['year'];


 i am getting a similar error plus a few more for the report image mod as well within the same "new images" and "search" functions although i have not had time to search yet to see if the problem was fixed in the forums.
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: V@no on October 02, 2008, 02:18:08 AM
This is the actual line 10

"lang_calendar_head" => $month_txt." ".$dat0[year],

Where did that line came from? I don't see anything about it in the installation instructions.


there is also another error showing

Notice: Undefined variable: calshow in /is/bla bla/www/gallery/includes/page_header.php on line 464

this is my actual line 464

f($calshow==""){$calshow=$dat0['month']." ".$dat0['year'];
I've updated my post above, should solve this problem.

As of other similar messages, you must have changed global.php to show all messages.
By default its:
error_reporting(E_ERROR | E_WARNING | E_PARSE);

Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: griffdsp on October 02, 2008, 12:52:24 PM
ok after a while playing around i have managed to get the errors removed. i have had to revert to the original mod instead of showing the month and year its now showing just simple calendar.

but at least its working now. Thanks for all your help!

The remaining errors from the report image mod are from the functions php and are "undefined index: report_image_status in bla bla". This is due to an addition to the mod made by member cookie at the bottom of page 4 of the mod (second to last post) which without the errors is highly useful (http://www.4homepages.de/forum/index.php?topic=11447.45)

should i post in the correct place with this error?

 The global.php line you mentioned is exactly what you said it should be
Title: Re: [MOD] Kalender / Calendar (by Cr@zy Sash)
Post by: crs on May 01, 2009, 01:38:35 AM
Wäre es möglich, dass User Events in diesen Kalender eintragen können?
Zu diesen Events können sich dann andere User eintragen, dass Sie daran teilnehmen...

Wäre Super