Changeset 3185 for trunk/include
- Timestamp:
- Mar 9, 2009, 8:41:45 PM (16 years ago)
- Location:
- trunk/include
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/category_cats.inc.php
r3124 r3185 258 258 $category['count_categories'], 259 259 true, 260 '<br />'260 '<br>' 261 261 ), 262 262 'DESCRIPTION' => -
trunk/include/feedcreator.class.php
r2296 r3185 690 690 } 691 691 } else { 692 echo "<br /><b>Error creating feed file, please check write permissions.</b><br />";692 echo "<br><b>Error creating feed file, please check write permissions.</b><br>"; 693 693 } 694 694 } -
trunk/include/functions_html.inc.php
r3172 r3185 62 62 $icon_url = get_root_url().$icon_url; 63 63 $output = '<img title="'.$title.'" src="'.$icon_url.'" class="icon" style="border:0;'; 64 $output.= 'height:'.$size[1].'px;width:'.$size[0].'px" alt="(!)" />';64 $output.= 'height:'.$size[1].'px;width:'.$size[0].'px" alt="(!)">'; 65 65 $cache['get_icon']['_icons_'][$key] = $output; 66 66 } … … 308 308 309 309 $output.= 310 ' />'310 '>' 311 311 .' '. $tag['name'] 312 312 .'</label>' … … 345 345 { 346 346 echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'; 347 echo '<div style="text-align:center;">'.l10n('access_forbiden').'<br />';347 echo '<div style="text-align:center;">'.l10n('access_forbiden').'<br>'; 348 348 echo '<a href="'.get_root_url().'identification.php">'.l10n('identification').'</a> '; 349 349 echo '<a href="'.make_index_url().'">'.l10n('home').'</a></div>'; … … 369 369 redirect_html( $alternate_url, 370 370 '<div style="text-align:left; margin-left:5em;margin-bottom:5em;"> 371 <h1 style="text-align:left; font-size:36px;">Forbidden</h1><br />'371 <h1 style="text-align:left; font-size:36px;">Forbidden</h1><br>' 372 372 .$msg.'</div>', 373 373 5 ); … … 386 386 redirect_html( $alternate_url, 387 387 '<div style="text-align:left; margin-left:5em;margin-bottom:5em;"> 388 <h1 style="text-align:left; font-size:36px;">Bad request</h1><br />'388 <h1 style="text-align:left; font-size:36px;">Bad request</h1><br>' 389 389 .$msg.'</div>', 390 390 5 ); … … 403 403 redirect_html( $alternate_url, 404 404 '<div style="text-align:left; margin-left:5em;margin-bottom:5em;"> 405 <h1 style="text-align:left; font-size:36px;">Page not found</h1><br />'405 <h1 style="text-align:left; font-size:36px;">Page not found</h1><br>' 406 406 .$msg.'</div>', 407 407 5 ); … … 487 487 .'"><img src="' 488 488 .get_root_url().get_themeconf('icon_dir').'/remove_s.png' 489 .'" alt="x" style="vertical-align:bottom;" class="button" />'489 .'" alt="x" style="vertical-align:bottom;" class="button">' 490 490 .'</a>'; 491 491 } -
trunk/include/functions_notification.inc.php
r3049 r3185 532 532 .l10n('recent_pics_cat').'</a>' 533 533 .')' 534 .'</li><br />';534 .'</li><br>'; 535 535 536 536 foreach($date_detail['elements'] as $element) … … 542 542 'image_file' => $element['file'], 543 543 )) 544 .'"><img src="'.$tn_src.'" /></a>';545 } 546 $description .= '...<br />';544 .'"><img src="'.$tn_src.'"></a>'; 545 } 546 $description .= '...<br>'; 547 547 548 548 $description .= -
trunk/include/smarty/libs/plugins/function.html_checkboxes.php
r2216 r3185 134 134 $_output .= ' checked="checked"'; 135 135 } 136 $_output .= $extra . ' />' . $output;136 $_output .= $extra . '>' . $output; 137 137 if ($labels) $_output .= '</label>'; 138 138 $_output .= $separator; -
trunk/include/smarty/libs/plugins/function.html_image.php
r2216 r3185 135 135 } 136 136 137 return $prefix . '<img src="'.$path_prefix.$file.'" alt="'.$alt.'" width="'.$width.'" height="'.$height.'"'.$extra.' />' . $suffix;137 return $prefix . '<img src="'.$path_prefix.$file.'" alt="'.$alt.'" width="'.$width.'" height="'.$height.'"'.$extra.'>' . $suffix; 138 138 } 139 139 -
trunk/include/smarty/libs/plugins/function.html_radios.php
r2216 r3185 147 147 $_output .= ' checked="checked"'; 148 148 } 149 $_output .= $extra . ' />' . $output;149 $_output .= $extra . '>' . $output; 150 150 if ($labels) $_output .= '</label>'; 151 151 $_output .= $separator; -
trunk/include/smarty/libs/plugins/function.html_select_date.php
r2216 r3185 269 269 $year_result .= ' ' . $year_extra; 270 270 } 271 $year_result .= ' />';271 $year_result .= '>'; 272 272 } else { 273 273 $years = range((int)$start_year, (int)$end_year); -
trunk/include/ws_core.inc.php
r3049 r3185 204 204 $changed += PwgResponseEncoder::_removeNamedArray($value); 205 205 $changed += PwgResponseEncoder::_removeNamedStruct($value); 206 // print_r('walk '.$key."<br />\n");206 // print_r('walk '.$key."<br>\n"); 207 207 } 208 208 while ($changed); … … 219 219 .' count='.count($value) 220 220 .' first_key='.$first_key 221 ."<br />\n"221 ."<br>\n" 222 222 );*/ 223 223 $ret = 0;
Note: See TracChangeset
for help on using the changeset viewer.