Changeset 791
- Timestamp:
- 10/02/08 18:47:46 (7 weeks ago)
- Location:
- trunk/app
- Files:
-
- 3 modified
-
config/sql/postgresql/messages.sql (modified) (1 diff)
-
views/entries/admin_listing.ctp (modified) (1 diff)
-
views/users/admin_edit.ctp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/config/sql/postgresql/messages.sql
r436 r791 6 6 "created" timestamp(0) with time zone DEFAULT now() NOT NULL, 7 7 "level" int NOT NULL DEFAULT 0, -- build the message thread if reply exist 8 "sender " int NOT NULL REFERENCES users(id) ON DELETE CASCADE, -- Who send the message8 "sender_id" int NOT NULL REFERENCES users(id) ON DELETE CASCADE, -- Who send the message 9 9 "user_id" int NOT NULL REFERENCES users(id) ON DELETE CASCADE, -- Who receive the message 10 10 "status" smallint NOT NULL DEFAULT 0 -
trunk/app/views/entries/admin_listing.ctp
r776 r791 29 29 30 30 <?php 31 $paginator->options(array('url' => $val['User']['username'])); 31 if ( isset($val) ): 32 $paginator->options(array('url' => $val['User']['username'])); 33 endif; 32 34 33 35 $t = $html->div(null,$paginator->prev('« '.__('Previous', true),null,null,array('class'=>'disabled')),array('style'=>'width:100px;float:left')); -
trunk/app/views/users/admin_edit.ctp
r789 r791 1 1 <?php 2 2 //die( var_dump( $this->data ) ); 3 4 echo $javascript->link('myfunctions');5 3 6 4 if ($this->data['User']['id'] != $session->read('Auth.User.id')):
