phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] CVS: notes/inc class.ui.inc.php,1.5.2.6,1.5.2.6.2.1


From: Bettina Gille <address@hidden>
Subject: [Phpgroupware-cvs] CVS: notes/inc class.ui.inc.php,1.5.2.6,1.5.2.6.2.1
Date: Sat, 26 Apr 2003 17:03:47 -0400

Update of /cvsroot/phpgroupware/notes/inc
In directory subversions:/tmp/cvs-serv8009/inc

Modified Files:
      Tag: Version-0_9_16-branch
        class.ui.inc.php 
Log Message:
update

Index: class.ui.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/notes/inc/class.ui.inc.php,v
retrieving revision 1.5.2.6
retrieving revision 1.5.2.6.2.1
diff -C2 -r1.5.2.6 -r1.5.2.6.2.1
*** class.ui.inc.php    5 Mar 2003 21:18:00 -0000       1.5.2.6
--- class.ui.inc.php    26 Apr 2003 21:03:45 -0000      1.5.2.6.2.1
***************
*** 61,66 ****
                function set_app_langs()
                {
-                       global $tr_color;
- 
                        
$this->t->set_var('bg_color',$GLOBALS['phpgw_info']['theme']['th_bg']);
                        $tr_color = 
$this->nextmatchs->alternate_row_color($tr_color);
--- 61,64 ----
***************
*** 227,231 ****
                function add()
                {
!                       global $cat_id, $new_cat, $addnote, $note;
  
                /*      if ($GLOBALS['spellcheck'])
--- 225,232 ----
                function add()
                {
!                       $cat_id         = get_var('cat_id',array('POST','GET'));
!                       $new_cat        = get_var('new_cat',array('POST'));
!                       $addnote        = get_var('addnote',array('POST'));
!                       $note           = get_var('note',array('POST'));
  
                /*      if ($GLOBALS['spellcheck'])
***************
*** 283,287 ****
                function edit()
                {
!                       global $cat_id, $new_cat, $editnote, $note, $note_id;
  
                        $this->display_app_header();
--- 284,292 ----
                function edit()
                {
!                       $note_id        = 
get_var('note_id',array('GET','POST'));
!                       $cat_id         = get_var('cat_id',array('GET','POST'));
!                       $new_cat        = get_var('new_cat',array('POST'));
!                       $editnote       = get_var('editnote',array('POST'));
!                       $note           = get_var('note',array('POST'));
  
                        $this->display_app_header();
***************
*** 337,341 ****
                function delete()
                {
!                       global $note_id, $confirm;
  
                        if ($confirm)
--- 342,347 ----
                function delete()
                {
!                       $note_id        = 
get_var('note_id',array('GET','POST'));
!                       $confirm        = get_var('confirm',array('POST'));
  
                        if ($confirm)
***************
*** 362,366 ****
                function view()
                {
!                       global $note_id, $note;
  
                        $this->display_app_header();
--- 368,372 ----
                function view()
                {
!                       $note_id = get_var('note_id',array('GET'));
  
                        $this->display_app_header();
***************
*** 384,388 ****
                function preferences()
                {
!                       global $submit, $prefs;
  
                        if ($submit)
--- 390,395 ----
                function preferences()
                {
!                       $submit = get_var('submit',array('POST'));
!                       $prefs  = get_var('prefs',array('POST'));
  
                        if ($submit)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]