Changeset 789

Show
Ignore:
Timestamp:
10/02/08 13:31:28 (7 weeks ago)
Author:
aarkerio
Message:

Little bugs fixed

Location:
trunk/app
Files:
6 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/controllers/themes_controller.php

    r785 r789  
    3939         $this->Sanitize = new Sanitize;  
    4040         $this->Sanitize->clean($this->data['Theme']); 
    41          if ($this->Theme->save($this->data['Theme']): 
     41         if ($this->Theme->save($this->data['Theme'])): 
    4242            $this->msgFlash(__('Data saved', true), '/admin/themes/listing'); 
    4343     endif; 
  • trunk/app/views/elements/admin_menu.ctp

    r771 r789  
    55                                   $html->link(__('New Entry', true), '/admin/entries/add'), 
    66                                                   $html->link(__('Comments', true), '/admin/comments/listing'), 
    7                                                                $html->link(__('Acquaintances', true), '/admin/acquaintances/listing'), 
    8                                                                $html->link(__('Quotes', true), '/admin/quotes/listing') 
     7                                                               $html->link(__('Usefull links', true), '/admin/acquaintances/listing'), 
     8                                                               $html->link(__('Quotes', true), '/admin/quotes/listing'), 
     9                                                               $html->link(__('Images', true), '/admin/images/listing') 
    910                                                               ), 
    1011         $html->link(__('eCourses', true), '/admin/ecourses/listing') => array( 
  • trunk/app/views/users/admin_edit.ctp

    r701 r789  
    1717  
    1818  echo '<legend>'.$session->read('Auth.User.username') .'\'s '.__('profile', true).'</legend>'; 
    19    
     19  echo $html->div(null, '<b>'.$this->data['User']['email'].'</b>'); 
    2020  echo $form->input('User.name', array('size' => 35, 'maxlength'=>50));  
    2121   
    22   echo $form->input('User.email', array('size' => 30, 'maxlength'=>50)); 
    2322   
    2423  echo $form->label('User.layout', __('Layout',true));  
  • trunk/app/views/users/bloggers.ctp

    r589 r789  
    11<?php 
    2 echo $html->div('titnew','eduBloggers'); 
     2echo $html->div('title_portal','eduBloggers'); 
    33 
    44foreach ($data as $v): 
  • trunk/app/views/users/directory.ctp

    r659 r789  
    1 <?php echo $html->div(null, __('Directory', true)); ?> 
     1<?php echo $html->div('title_portal', __('Directory', true)); ?> 
    22 
    33<table style="margin: 0 auto;border:1px dotted gray;width:100%;"> 
  • trunk/app/views/users/edit.ctp

    r541 r789  
    2727  echo '<legend>'.$session->read('Auth.User.username') .'\'s account</legend>'; 
    2828    
    29   echo $form->input('User.name', array("size" => 35, "maxlength"=>50));  
    30    
    31   echo $form->input('User.email', array("size" => 30, "maxlength"=>50)); 
    32     
     29  echo $form->input('User.name', array('size' => 35, 'maxlength'=>50));  
     30      
    3331  echo $form->label('User.cv', 'Profile:').'<br />'; 
    3432  echo $form->textarea('User.cv', array("cols" => 50, "rows" => 7));