- Timestamp:
- 09/23/08 22:57:47 (2 months ago)
- Location:
- trunk/app
- Files:
-
- 2 modified
-
config/sql/postgresql/langs.sql (modified) (1 diff)
-
views/acquaintances/display.ctp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/config/sql/postgresql/langs.sql
r436 r778 5 5 "lang" varchar(80) NOT NULL UNIQUE 6 6 ); 7 INSERT INTO langs (code, lang) VALUES ('es_MX', 'Spanish Argentina'); 8 INSERT INTO langs (code, lang) VALUES ('es_MX', 'Spanish Spain'); 7 9 INSERT INTO langs (code, lang) VALUES ('es_MX', 'Spanish Mexico'); 8 10 INSERT INTO langs (code, lang) VALUES ('en_US', 'English USA'); 9 11 INSERT INTO langs (code, lang) VALUES ('en_GB', 'English UK'); 10 INSERT INTO langs (code, lang) VALUES ('fr_FR', 'Fr ance');11 12 INSERT INTO langs (code, lang) VALUES ('fr_FR', 'French France'); 13 INSERT INTO langs (code, lang) VALUES ('fr_CA', 'French Canada'); -
trunk/app/views/acquaintances/display.ctp
r772 r778 3 3 echo $html->div(null, $blog['User']['username'], array('style'=>'font-size:18pt;padding:4px;boder:1px solid #c0c0c0')); 4 4 5 if ( count($data) < 1 ): 6 echo $html->div(null, __('Teacher has not published in this section', true), array('style'=>'font-size:18pt;padding:4px;boder:1px solid #c0c0c0')); 7 endif; 8 5 9 foreach ($data as $val): 6 7 10 $tmp = '<h2>'. $val['Acquaintance']['name'] . '</h2>'; 8 11 $tmp .= $html->para(null, $val['Acquaintance']['description']);
