[geeklog-cvs] Geeklog-1.x/public_html/calendar event.php, 1.27, 1.28

Dirk Haun dhaun at qs1489.pair.com
Sat Apr 19 10:56:03 EDT 2008


Update of /cvsroot/geeklog/Geeklog-1.x/public_html/calendar
In directory qs1489.pair.com:/tmp/cvs-serv35251/public_html/calendar

Modified Files:
	event.php 
Log Message:
Fixes for E_ALL


Index: event.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/calendar/event.php,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** event.php	16 Mar 2008 12:22:01 -0000	1.27
--- event.php	19 Apr 2008 14:56:01 -0000	1.28
***************
*** 100,104 ****
          $cal_template->set_var('lang_description', $LANG_CAL_1[5]);
          $description = stripslashes ($A['description']);
!         if ($A['postmode'] == 'plaintext') {
              $description = nl2br ($description);
          }
--- 100,104 ----
          $cal_template->set_var('lang_description', $LANG_CAL_1[5]);
          $description = stripslashes ($A['description']);
!         if (empty($A['postmode']) || ($A['postmode'] == 'plaintext')) {
              $description = nl2br ($description);
          }
***************
*** 641,645 ****
                  $cal_templates->set_var('lang_description', $LANG_CAL_1[5]);
                  $description = stripslashes($A['description']);
!                 if ($A['postmode'] == 'plaintext') {
                      $description = nl2br($description);
                  }
--- 641,645 ----
                  $cal_templates->set_var('lang_description', $LANG_CAL_1[5]);
                  $description = stripslashes($A['description']);
!                 if (empty($A['postmode']) || ($A['postmode'] == 'plaintext')) {
                      $description = nl2br($description);
                  }




More information about the geeklog-cvs mailing list