Changeset 629 for trunk/app/views/layouts/rubyx.ctp
- Timestamp:
- 07/07/08 18:00:27 (5 months ago)
- Files:
-
- 1 modified
-
trunk/app/views/layouts/rubyx.ctp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/layouts/rubyx.ctp
r617 r629 98 98 <?php 99 99 if ( $blog["Vclassroom"] != null): 100 echo $this->element('vclassrooms', $blog[ "Vclassroom"]);100 echo $this->element('vclassrooms', $blog['Vclassroom']); 101 101 endif; 102 102 … … 112 112 113 113 if ( $blog["Lesson"] != null ): 114 echo $this->element('lesson', $blog[ "Lesson"]);114 echo $this->element('lesson', $blog['Lesson']); 115 115 endif; 116 116 117 117 if ( $blog["Podcast"] != null ): 118 echo $this->element('podcast', $blog[ "Podcast"]);118 echo $this->element('podcast', $blog['Podcast']); 119 119 endif; 120 120 121 121 if ( $blog["Catfaq"] != null ): 122 echo $this->element('catfaqs', $blog[ "Catfaq"]);122 echo $this->element('catfaqs', $blog['Catfaq']); 123 123 endif; 124 124 125 125 if ( $blog["Acquaintance"] != null ): 126 echo $this->element('acquaintances', $blog["Acquaintance"]);126 echo $this->element('acquaintances', $blog['Acquaintance']); 127 127 endif; 128 128 129 /* maybe remove this later130 if ( $blog["Catforum"] != null)131 {132 echo $this->element('catforums', $blog["Catforum"]);133 }134 */135 129 136 130 if ( $session->check('Auth.User') ): 137 e($html->para( $html->link(138 $html->image('static/login.png', array( "alt"=>'Login', "title"=>'Login')),139 '/users/login', false, false, null), a a('style','text-align:center;margin:35px 0 35px 0')));131 e($html->para(null, $html->link( 132 $html->image('static/login.png', array('alt'=>'Login', 'title'=>'Login')), 133 '/users/login', false, false, null), array('style'=>'text-align:center;margin:35px 0 35px 0'))); 140 134 endif; 141 135
