Changeset 3180567
- Timestamp:
- 11/03/2024 06:21:12 AM (14 months ago)
- Location:
- photo-gallery/trunk
- Files:
-
- 14 edited
-
admin/views/Albumsgalleries.php (modified) (1 diff)
-
admin/views/Themes.php (modified) (476 diffs)
-
frontend/views/BWGViewAlbum_compact_preview.php (modified) (1 diff)
-
frontend/views/BWGViewBlog_style.php (modified) (1 diff)
-
frontend/views/BWGViewGalleryBox.php (modified) (13 diffs)
-
frontend/views/BWGViewImage_browser.php (modified) (4 diffs)
-
frontend/views/BWGViewSlideshow.php (modified) (7 diffs)
-
frontend/views/BWGViewThumbnails.php (modified) (5 diffs)
-
frontend/views/BWGViewThumbnails_masonry.php (modified) (4 diffs)
-
frontend/views/BWGViewThumbnails_mosaic.php (modified) (2 diffs)
-
frontend/views/BWGViewWidget.php (modified) (1 diff)
-
photo-gallery.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
wd/includes/notices.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
photo-gallery/trunk/admin/views/Albumsgalleries.php
r2743247 r3180567 103 103 <td class="column-primary column-title" data-colname="<?php _e('Title', 'photo-gallery'); ?>"> 104 104 <strong class="has-media-icon"> 105 <a class="wd-pointer" onclick="window.parent.bwg_add_album_gallery('<?php echo $row->id; ?>', '<?php echo $row->is_album; ?>', '<?php echo esc_url( $preview_image ); ?>', '<?php echo esc_ attr( $row->name ); ?>','<?php echo !$row->published ? 'dashicons-hidden' : 'bwg-hidden' ?>')" id="a_<?php echo $iterator; ?>">105 <a class="wd-pointer" onclick="window.parent.bwg_add_album_gallery('<?php echo $row->id; ?>', '<?php echo $row->is_album; ?>', '<?php echo esc_url( $preview_image ); ?>', '<?php echo esc_js( $row->name ); ?>','<?php echo !$row->published ? 'dashicons-hidden' : 'bwg-hidden' ?>')" id="a_<?php echo $iterator; ?>"> 106 106 <span class="media-icon image-icon"> 107 107 <img class="preview-image" title="<?php echo esc_attr( $row->name ); ?>" src="<?php echo esc_url( $preview_image ); ?>" width="60" height="60" /> -
photo-gallery/trunk/admin/views/Themes.php
r2792023 r3180567 162 162 foreach ( $font_families as $key => $font_family ) { 163 163 ?> 164 <option value="<?php echo $key; ?>" <?php echo (($saved_style == $key) ? 'selected="selected"' : ''); ?> style="font-family:<?php echo $font_family; ?>"><?php echo $font_family; ?></option>164 <option value="<?php echo esc_attr($key); ?>" <?php echo (($saved_style == $key) ? 'selected="selected"' : ''); ?> style="font-family:<?php echo $font_family; ?>"><?php echo esc_html($font_family); ?></option> 165 165 <?php 166 166 } … … 211 211 <div class="wd-page-title wd-header"> 212 212 <h1 class="wp-heading-inline"><?php _e('Theme title', 'photo-gallery'); ?></h1> 213 <input type="text" id="name" name="name" value="<?php echo !empty( $row->name ) ? $row->name: ''; ?>" class="spider_text_input bwg_requried">213 <input type="text" id="name" name="name" value="<?php echo !empty( $row->name ) ? esc_attr($row->name) : ''; ?>" class="spider_text_input bwg_requried"> 214 214 <div class="bwg-page-actions"> 215 215 <button class="tw-button-primary button-large" onclick="if (spider_check_required('name', 'Title')) {return false;}; spider_set_input_value('task', 'save')"> … … 246 246 <td class="spider_label"><label for="thumb_margin"><?php _e('Distance between pictures:', 'photo-gallery'); ?> </label></td> 247 247 <td> 248 <input type="text" name="thumb_margin" id="thumb_margin" value="<?php echo $row->thumb_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px248 <input type="text" name="thumb_margin" id="thumb_margin" value="<?php echo esc_attr($row->thumb_margin); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 249 249 </td> 250 250 </tr> … … 262 262 <td class="spider_label"><label for="thumb_padding"><?php echo __('Padding:', 'photo-gallery'); ?> </label></td> 263 263 <td> 264 <input type="text" name="thumb_padding" id="thumb_padding" value="<?php echo $row->thumb_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px264 <input type="text" name="thumb_padding" id="thumb_padding" value="<?php echo esc_attr($row->thumb_padding); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 265 265 </td> 266 266 </tr> … … 268 268 <td class="spider_label"><label for="thumb_border_width"><?php echo __('Border width:', 'photo-gallery'); ?> </label></td> 269 269 <td> 270 <input type="text" name="thumb_border_width" id="thumb_border_width" value="<?php echo $row->thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px270 <input type="text" name="thumb_border_width" id="thumb_border_width" value="<?php echo esc_attr($row->thumb_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 271 271 </td> 272 272 </tr> … … 278 278 foreach ($border_styles as $key => $border_style) { 279 279 ?> 280 <option value="<?php echo $key; ?>" <?php echo (($row->thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>280 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 281 281 <?php 282 282 } … … 288 288 <td class="spider_label"><label for="thumb_border_color"><?php echo __('Border color:', 'photo-gallery'); ?></label></td> 289 289 <td> 290 <input type="text" name="thumb_border_color" id="thumb_border_color" value="<?php echo $row->thumb_border_color; ?>" class="jscolor"/>290 <input type="text" name="thumb_border_color" id="thumb_border_color" value="<?php echo esc_attr($row->thumb_border_color); ?>" class="jscolor"/> 291 291 </td> 292 292 </tr> … … 294 294 <td class="spider_label"><label for="thumb_border_radius"><?php echo __('Border radius:', 'photo-gallery'); ?> </label></td> 295 295 <td> 296 <input type="text" name="thumb_border_radius" id="thumb_border_radius" value="<?php echo $row->thumb_border_radius; ?>" class="spider_char_input" />296 <input type="text" name="thumb_border_radius" id="thumb_border_radius" value="<?php echo esc_attr($row->thumb_border_radius); ?>" class="spider_char_input" /> 297 297 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 298 298 </td> … … 301 301 <td class="spider_label"><label for="thumb_box_shadow"><?php echo __('Shadow:', 'photo-gallery'); ?> </label></td> 302 302 <td> 303 <input type="text" name="thumb_box_shadow" id="thumb_box_shadow" value="<?php echo $row->thumb_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />303 <input type="text" name="thumb_box_shadow" id="thumb_box_shadow" value="<?php echo esc_attr($row->thumb_box_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 304 304 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 305 305 </td> … … 312 312 foreach ($thumbnail_hover_effects as $key => $hover_effect) { 313 313 ?> 314 <option value="<?php echo $key; ?>" <?php echo (($row->thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo__($hover_effect, 'photo-gallery'); ?></option>314 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($hover_effect, 'photo-gallery'); ?></option> 315 315 <?php 316 316 } … … 322 322 <td class="spider_label"><label for="thumb_hover_effect_value"><?php echo __('Hover effect value:', 'photo-gallery'); ?> </label></td> 323 323 <td> 324 <input type="text" name="thumb_hover_effect_value" id="thumb_hover_effect_value" value="<?php echo $row->thumb_hover_effect_value; ?>" class="spider_char_input"/>324 <input type="text" name="thumb_hover_effect_value" id="thumb_hover_effect_value" value="<?php echo esc_attr($row->thumb_hover_effect_value); ?>" class="spider_char_input"/> 325 325 <div class="spider_description"><?php echo __('E.g. Rotate: 10deg, Scale/Zoom: 1.5, Skew: 10deg.', 'photo-gallery'); ?></div> 326 326 </td> … … 350 350 </td> 351 351 <td> 352 <input type="text" name="thumb_bg_color" id="thumb_bg_color" value="<?php echo $row->thumb_bg_color; ?>" class="jscolor" />352 <input type="text" name="thumb_bg_color" id="thumb_bg_color" value="<?php echo esc_attr($row->thumb_bg_color); ?>" class="jscolor" /> 353 353 </td> 354 354 </tr> … … 356 356 <td class="spider_label"><label for="thumb_bg_transparency"><?php echo __('Thumbnail background transparency:', 'photo-gallery'); ?> </label></td> 357 357 <td> 358 <input type="text" name="thumb_bg_transparency" id="thumb_bg_transparency" value="<?php echo $row->thumb_bg_transparency; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %358 <input type="text" name="thumb_bg_transparency" id="thumb_bg_transparency" value="<?php echo esc_attr($row->thumb_bg_transparency); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 359 359 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 360 360 </td> … … 363 363 <td class="spider_label"><label for="thumb_transparent"><?php echo __('Thumbnail transparency:', 'photo-gallery'); ?> </label></td> 364 364 <td> 365 <input type="text" name="thumb_transparent" id="thumb_transparent" value="<?php echo $row->thumb_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %365 <input type="text" name="thumb_transparent" id="thumb_transparent" value="<?php echo esc_attr($row->thumb_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 366 366 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 367 367 </td> … … 370 370 <td class="spider_label"><label for="thumbs_bg_color"><?php echo __('Full background color:', 'photo-gallery'); ?> </label></td> 371 371 <td> 372 <input type="text" name="thumbs_bg_color" id="thumbs_bg_color" value="<?php echo $row->thumbs_bg_color; ?>" class="jscolor"/>372 <input type="text" name="thumbs_bg_color" id="thumbs_bg_color" value="<?php echo esc_attr($row->thumbs_bg_color); ?>" class="jscolor"/> 373 373 </td> 374 374 </tr> … … 376 376 <td class="spider_label"><label for="thumb_bg_transparent"><?php echo __('Full background transparency:', 'photo-gallery'); ?> </label></td> 377 377 <td> 378 <input type="text" name="thumb_bg_transparent" id="thumb_bg_transparent" value="<?php echo $row->thumb_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %378 <input type="text" name="thumb_bg_transparent" id="thumb_bg_transparent" value="<?php echo esc_attr($row->thumb_bg_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 379 379 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 380 380 </td> … … 387 387 foreach ($aligns as $key => $align) { 388 388 ?> 389 <option value="<?php echo $key; ?>" <?php echo (($row->thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>389 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 390 390 <?php 391 391 } … … 416 416 <td class="spider_label"><label for="thumb_title_font_size"><?php echo __('Title font size:', 'photo-gallery'); ?> </label></td> 417 417 <td> 418 <input type="text" name="thumb_title_font_size" id="thumb_title_font_size" value="<?php echo $row->thumb_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px418 <input type="text" name="thumb_title_font_size" id="thumb_title_font_size" value="<?php echo esc_attr($row->thumb_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 419 419 </td> 420 420 </tr> … … 422 422 <td class="spider_label"><label for="thumb_title_font_color"><?php echo __('Title font color:', 'photo-gallery'); ?> </label></td> 423 423 <td> 424 <input type="text" name="thumb_title_font_color" id="thumb_title_font_color" value="<?php echo $row->thumb_title_font_color; ?>" class="jscolor" />424 <input type="text" name="thumb_title_font_color" id="thumb_title_font_color" value="<?php echo esc_attr($row->thumb_title_font_color); ?>" class="jscolor" /> 425 425 </td> 426 426 </tr> … … 428 428 <td class="spider_label"><label for="thumb_title_font_color_hover"><?php echo __('Title font color (Show on hover):', 'photo-gallery'); ?> </label></td> 429 429 <td> 430 <input type="text" name="thumb_title_font_color_hover" id="thumb_title_font_color_hover" value="<?php echo $row->thumb_title_font_color_hover; ?>" class="jscolor" />430 <input type="text" name="thumb_title_font_color_hover" id="thumb_title_font_color_hover" value="<?php echo esc_attr($row->thumb_title_font_color_hover); ?>" class="jscolor" /> 431 431 </td> 432 432 </tr> … … 442 442 foreach ($font_weights as $key => $font_weight) { 443 443 ?> 444 <option value="<?php echo $key; ?>" <?php echo (($row->thumb_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>444 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->thumb_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 445 445 <?php 446 446 } … … 452 452 <td class="spider_label"><label for="thumb_title_shadow"><?php echo __('Title box shadow:', 'photo-gallery'); ?> </label></td> 453 453 <td> 454 <input type="text" name="thumb_title_shadow" id="thumb_title_shadow" value="<?php echo $row->thumb_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />454 <input type="text" name="thumb_title_shadow" id="thumb_title_shadow" value="<?php echo esc_attr($row->thumb_title_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 455 455 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 456 456 </td> … … 459 459 <td class="spider_label"><label for="thumb_title_margin"><?php echo __('Title margin:', 'photo-gallery'); ?> </label></td> 460 460 <td> 461 <input type="text" name="thumb_title_margin" id="thumb_title_margin" value="<?php echo $row->thumb_title_margin; ?>" class="spider_char_input" />461 <input type="text" name="thumb_title_margin" id="thumb_title_margin" value="<?php echo esc_attr($row->thumb_title_margin); ?>" class="spider_char_input" /> 462 462 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 463 463 </td> … … 467 467 <td> 468 468 <input type="text" name="thumb_description_font_size" id="thumb_description_font_size" value="<?php echo 469 $row->thumb_description_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px469 esc_attr($row->thumb_description_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 470 470 </td> 471 471 </tr> … … 473 473 <td class="spider_label"><label for="thumb_description_font_color"><?php echo __('Thumb description font color:', 'photo-gallery'); ?> </label></td> 474 474 <td> 475 <input type="text" name="thumb_description_font_color" id="thumb_description_font_color" value="<?php echo $row->thumb_description_font_color; ?>" class="jscolor" />475 <input type="text" name="thumb_description_font_color" id="thumb_description_font_color" value="<?php echo esc_attr($row->thumb_description_font_color); ?>" class="jscolor" /> 476 476 </td> 477 477 </tr> … … 484 484 <td> 485 485 <input type="text" name="thumb_gal_title_font_size" id="thumb_gal_title_font_size" value="<?php echo 486 $row->thumb_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px486 esc_attr($row->thumb_gal_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 487 487 </td> 488 488 </tr> … … 490 490 <td class="spider_label"><label for="thumb_gal_title_font_color"><?php echo __('Gallery title/description font color:', 'photo-gallery'); ?> </label></td> 491 491 <td> 492 <input type="text" name="thumb_gal_title_font_color" id="thumb_gal_title_font_color" value="<?php echo $row->thumb_gal_title_font_color; ?>" class="jscolor" />492 <input type="text" name="thumb_gal_title_font_color" id="thumb_gal_title_font_color" value="<?php echo esc_attr($row->thumb_gal_title_font_color); ?>" class="jscolor" /> 493 493 </td> 494 494 </tr> … … 504 504 foreach ($font_weights as $key => $font_weight) { 505 505 ?> 506 <option value="<?php echo $key; ?>" <?php echo (($row->thumb_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>506 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->thumb_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 507 507 <?php 508 508 } … … 514 514 <td class="spider_label"><label for="thumb_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', 'photo-gallery'); ?> </label></td> 515 515 <td> 516 <input type="text" name="thumb_gal_title_shadow" id="thumb_gal_title_shadow" value="<?php echo $row->thumb_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />516 <input type="text" name="thumb_gal_title_shadow" id="thumb_gal_title_shadow" value="<?php echo esc_attr($row->thumb_gal_title_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 517 517 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 518 518 </td> … … 521 521 <td class="spider_label"><label for="thumb_gal_title_margin"><?php echo __('Gallery title/description margin:', 'photo-gallery'); ?> </label></td> 522 522 <td> 523 <input type="text" name="thumb_gal_title_margin" id="thumb_gal_title_margin" value="<?php echo $row->thumb_gal_title_margin; ?>" class="spider_char_input" />523 <input type="text" name="thumb_gal_title_margin" id="thumb_gal_title_margin" value="<?php echo esc_attr($row->thumb_gal_title_margin); ?>" class="spider_char_input" /> 524 524 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 525 525 </td> … … 532 532 foreach ($aligns as $key => $align) { 533 533 ?> 534 <option value="<?php echo $key; ?>" <?php echo (($row->thumb_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo _e($align, 'photo-gallery'); ?></option>534 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->thumb_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 535 535 <?php 536 536 } … … 556 556 <td class="spider_label"><label for="masonry_thumb_padding"><?php echo __('Distance between pictures:', 'photo-gallery'); ?> </label></td> 557 557 <td> 558 <input type="text" name="masonry_thumb_padding" id="masonry_thumb_padding" value="<?php echo $row->masonry_thumb_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px558 <input type="text" name="masonry_thumb_padding" id="masonry_thumb_padding" value="<?php echo esc_attr($row->masonry_thumb_padding); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 559 559 </td> 560 560 </tr> … … 572 572 <td class="spider_label"><label for="masonry_thumb_border_width"><?php echo __('Border width:', 'photo-gallery'); ?> </label></td> 573 573 <td> 574 <input type="text" name="masonry_thumb_border_width" id="masonry_thumb_border_width" value="<?php echo $row->masonry_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px574 <input type="text" name="masonry_thumb_border_width" id="masonry_thumb_border_width" value="<?php echo esc_attr($row->masonry_thumb_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 575 575 </td> 576 576 </tr> … … 582 582 foreach ($border_styles as $key => $border_style) { 583 583 ?> 584 <option value="<?php echo $key; ?>" <?php echo (($row->masonry_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>584 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->masonry_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 585 585 <?php 586 586 } … … 592 592 <td class="spider_label"><label for="masonry_thumb_border_color"><?php echo __('Border color:', 'photo-gallery'); ?> </label></td> 593 593 <td> 594 <input type="text" name="masonry_thumb_border_color" id="masonry_thumb_border_color" value="<?php echo $row->masonry_thumb_border_color; ?>" class="jscolor" />594 <input type="text" name="masonry_thumb_border_color" id="masonry_thumb_border_color" value="<?php echo esc_attr($row->masonry_thumb_border_color); ?>" class="jscolor" /> 595 595 </td> 596 596 </tr> … … 598 598 <td class="spider_label"><label for="masonry_thumb_border_radius"><?php echo __('Border radius:', 'photo-gallery'); ?> </label></td> 599 599 <td> 600 <input type="text" name="masonry_thumb_border_radius" id="masonry_thumb_border_radius" value="<?php echo $row->masonry_thumb_border_radius; ?>" class="spider_char_input" />600 <input type="text" name="masonry_thumb_border_radius" id="masonry_thumb_border_radius" value="<?php echo esc_attr($row->masonry_thumb_border_radius); ?>" class="spider_char_input" /> 601 601 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 602 602 </td> … … 609 609 foreach ($thumbnail_hover_effects as $key => $hover_effect) { 610 610 ?> 611 <option value="<?php echo $key; ?>" <?php echo (($row->masonry_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo__($hover_effect, 'photo-gallery'); ?></option>611 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->masonry_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($hover_effect, 'photo-gallery'); ?></option> 612 612 <?php 613 613 } … … 619 619 <td class="spider_label"><label for="masonry_thumb_hover_effect_value"><?php echo __('Hover effect value:', 'photo-gallery'); ?> </label></td> 620 620 <td> 621 <input type="text" name="masonry_thumb_hover_effect_value" id="masonry_thumb_hover_effect_value" value="<?php echo $row->masonry_thumb_hover_effect_value; ?>" class="spider_char_input" />621 <input type="text" name="masonry_thumb_hover_effect_value" id="masonry_thumb_hover_effect_value" value="<?php echo esc_attr($row->masonry_thumb_hover_effect_value); ?>" class="spider_char_input" /> 622 622 <div class="spider_description"><?php echo __('E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg.', 'photo-gallery'); ?></div> 623 623 </td> … … 647 647 </td> 648 648 <td> 649 <input type="text" name="masonry_thumb_bg_color" id="masonry_thumb_bg_color" value="<?php echo $row->masonry_thumb_bg_color; ?>" class="jscolor" />649 <input type="text" name="masonry_thumb_bg_color" id="masonry_thumb_bg_color" value="<?php echo esc_attr($row->masonry_thumb_bg_color); ?>" class="jscolor" /> 650 650 </td> 651 651 </tr> … … 653 653 <td class="spider_label"><label for="masonry_thumb_bg_transparency"><?php echo __('Thumbnail background transparency:', 'photo-gallery'); ?> </label></td> 654 654 <td> 655 <input type="text" name="masonry_thumb_bg_transparency" id="masonry_thumb_bg_transparency" value="<?php echo $row->masonry_thumb_bg_transparency; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %655 <input type="text" name="masonry_thumb_bg_transparency" id="masonry_thumb_bg_transparency" value="<?php echo esc_attr($row->masonry_thumb_bg_transparency); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 656 656 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 657 657 </td> … … 660 660 <td class="spider_label"><label for="masonry_thumb_transparent"><?php echo __('Transparency:', 'photo-gallery'); ?> </label></td> 661 661 <td> 662 <input type="text" name="masonry_thumb_transparent" id="masonry_thumb_transparent" value="<?php echo $row->masonry_thumb_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %662 <input type="text" name="masonry_thumb_transparent" id="masonry_thumb_transparent" value="<?php echo esc_attr($row->masonry_thumb_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 663 663 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 664 664 </td> … … 667 667 <td class="spider_label"><label for="masonry_thumbs_bg_color"><?php echo __('Full Background color:', 'photo-gallery'); ?> </label></td> 668 668 <td> 669 <input type="text" name="masonry_thumbs_bg_color" id="masonry_thumbs_bg_color" value="<?php echo $row->masonry_thumbs_bg_color; ?>" class="jscolor" />669 <input type="text" name="masonry_thumbs_bg_color" id="masonry_thumbs_bg_color" value="<?php echo esc_attr($row->masonry_thumbs_bg_color); ?>" class="jscolor" /> 670 670 </td> 671 671 </tr> … … 673 673 <td class="spider_label"><label for="masonry_thumb_bg_transparent"><?php echo __('Background transparency:', 'photo-gallery'); ?> </label></td> 674 674 <td> 675 <input type="text" name="masonry_thumb_bg_transparent" id="masonry_thumb_bg_transparent" value="<?php echo $row->masonry_thumb_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %675 <input type="text" name="masonry_thumb_bg_transparent" id="masonry_thumb_bg_transparent" value="<?php echo esc_attr($row->masonry_thumb_bg_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 676 676 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 677 677 </td> … … 682 682 <select name="masonry_thumb_align" id="masonry_thumb_align"> 683 683 <?php foreach ($aligns as $key => $align) { ?> 684 <option value="<?php echo $key; ?>" <?php echo (($row->masonry_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>684 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->masonry_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 685 685 <?php } ?> 686 686 </select> … … 700 700 <td class="spider_label"><label for="masonry_thumb_title_font_size"><?php echo __('Title font size:', 'photo-gallery'); ?> </label></td> 701 701 <td> 702 <input type="text" name="masonry_thumb_title_font_size" id="masonry_thumb_title_font_size" value="<?php echo $row->masonry_thumb_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px702 <input type="text" name="masonry_thumb_title_font_size" id="masonry_thumb_title_font_size" value="<?php echo esc_attr($row->masonry_thumb_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 703 703 </td> 704 704 </tr> … … 706 706 <td class="spider_label"><label for="masonry_thumb_title_font_color"><?php echo __('Title font color:', 'photo-gallery'); ?> </label></td> 707 707 <td> 708 <input type="text" name="masonry_thumb_title_font_color" id="masonry_thumb_title_font_color" value="<?php echo $row->masonry_thumb_title_font_color; ?>" class="jscolor" />708 <input type="text" name="masonry_thumb_title_font_color" id="masonry_thumb_title_font_color" value="<?php echo esc_attr($row->masonry_thumb_title_font_color); ?>" class="jscolor" /> 709 709 </td> 710 710 </tr> … … 712 712 <td class="spider_label"><label for="masonry_thumb_title_font_color_hover"><?php echo __('Title font color (Show on hover):', 'photo-gallery'); ?> </label></td> 713 713 <td> 714 <input type="text" name="masonry_thumb_title_font_color_hover" id="masonry_thumb_title_font_color_hover" value="<?php echo $row->masonry_thumb_title_font_color_hover; ?>" class="jscolor" />714 <input type="text" name="masonry_thumb_title_font_color_hover" id="masonry_thumb_title_font_color_hover" value="<?php echo esc_attr($row->masonry_thumb_title_font_color_hover); ?>" class="jscolor" /> 715 715 </td> 716 716 </tr> … … 726 726 foreach ($font_weights as $key => $font_weight) { 727 727 ?> 728 <option value="<?php echo $key; ?>" <?php echo (($row->masonry_thumb_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>728 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->masonry_thumb_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 729 729 <?php 730 730 } … … 736 736 <td class="spider_label"><label for="masonry_thumb_title_margin"><?php echo __('Title margin:', 'photo-gallery'); ?> </label></td> 737 737 <td> 738 <input type="text" name="masonry_thumb_title_margin" id="masonry_thumb_title_margin" value="<?php echo $row->masonry_thumb_title_margin; ?>" class="spider_char_input" />738 <input type="text" name="masonry_thumb_title_margin" id="masonry_thumb_title_margin" value="<?php echo esc_attr($row->masonry_thumb_title_margin); ?>" class="spider_char_input" /> 739 739 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 740 740 </td> … … 743 743 <td class="spider_label"><label for="masonry_description_font_size"><?php echo __('Description font size:', 'photo-gallery'); ?> </label></td> 744 744 <td> 745 <input type="text" name="masonry_description_font_size" id="masonry_description_font_size" value="<?php echo $row->masonry_description_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px745 <input type="text" name="masonry_description_font_size" id="masonry_description_font_size" value="<?php echo esc_attr($row->masonry_description_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 746 746 </td> 747 747 </tr> … … 749 749 <td class="spider_label"><label for="masonry_description_color"><?php echo __('Description font color:', 'photo-gallery'); ?> </label></td> 750 750 <td> 751 <input type="text" name="masonry_description_color" id="masonry_description_color" value="<?php echo $row->masonry_description_color; ?>" class="jscolor" />751 <input type="text" name="masonry_description_color" id="masonry_description_color" value="<?php echo esc_attr($row->masonry_description_color); ?>" class="jscolor" /> 752 752 </td> 753 753 </tr> … … 759 759 <td class="spider_label"><label for="masonry_thumb_gal_title_font_size"><?php echo __('Gallery title/description font size:', 'photo-gallery'); ?> </label></td> 760 760 <td> 761 <input type="text" name="masonry_thumb_gal_title_font_size" id="masonry_thumb_gal_title_font_size" value="<?php echo $row->masonry_thumb_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px761 <input type="text" name="masonry_thumb_gal_title_font_size" id="masonry_thumb_gal_title_font_size" value="<?php echo esc_attr($row->masonry_thumb_gal_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 762 762 </td> 763 763 </tr> … … 765 765 <td class="spider_label"><label for="masonry_thumb_gal_title_font_color"><?php echo __('Gallery title/description font color:', 'photo-gallery'); ?> </label></td> 766 766 <td> 767 <input type="text" name="masonry_thumb_gal_title_font_color" id="masonry_thumb_gal_title_font_color" value="<?php echo $row->masonry_thumb_gal_title_font_color; ?>" class="jscolor" />767 <input type="text" name="masonry_thumb_gal_title_font_color" id="masonry_thumb_gal_title_font_color" value="<?php echo esc_attr($row->masonry_thumb_gal_title_font_color); ?>" class="jscolor" /> 768 768 </td> 769 769 </tr> … … 779 779 foreach ($font_weights as $key => $font_weight) { 780 780 ?> 781 <option value="<?php echo $key; ?>" <?php echo (($row->masonry_thumb_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>781 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->masonry_thumb_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 782 782 <?php 783 783 } … … 789 789 <td class="spider_label"><label for="masonry_thumb_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', 'photo-gallery'); ?> </label></td> 790 790 <td> 791 <input type="text" name="masonry_thumb_gal_title_shadow" id="masonry_thumb_gal_title_shadow" value="<?php echo $row->masonry_thumb_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />791 <input type="text" name="masonry_thumb_gal_title_shadow" id="masonry_thumb_gal_title_shadow" value="<?php echo esc_attr($row->masonry_thumb_gal_title_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 792 792 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 793 793 </td> … … 796 796 <td class="spider_label"><label for="masonry_thumb_gal_title_margin"><?php echo __('Gallery title/description margin:', 'photo-gallery'); ?> </label></td> 797 797 <td> 798 <input type="text" name="masonry_thumb_gal_title_margin" id="masonry_thumb_gal_title_margin" value="<?php echo $row->masonry_thumb_gal_title_margin; ?>" class="spider_char_input" />798 <input type="text" name="masonry_thumb_gal_title_margin" id="masonry_thumb_gal_title_margin" value="<?php echo esc_attr($row->masonry_thumb_gal_title_margin); ?>" class="spider_char_input" /> 799 799 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 800 800 </td> … … 807 807 foreach ($aligns as $key => $align) { 808 808 ?> 809 <option value="<?php echo $key; ?>" <?php echo (($row->masonry_thumb_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo _e($align, 'photo-gallery'); ?></option>809 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->masonry_thumb_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 810 810 <?php 811 811 } … … 831 831 <td class="spider_label"><label for="mosaic_thumb_padding"><?php echo __('Distance between pictures:', 'photo-gallery'); ?> </label></td> 832 832 <td> 833 <input type="text" name="mosaic_thumb_padding" id="mosaic_thumb_padding" value="<?php echo $row->mosaic_thumb_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px833 <input type="text" name="mosaic_thumb_padding" id="mosaic_thumb_padding" value="<?php echo esc_attr($row->mosaic_thumb_padding); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 834 834 </td> 835 835 </tr> … … 847 847 <td class="spider_label"><label for="mosaic_thumb_border_width"><?php echo __('Border width:', 'photo-gallery'); ?> </label></td> 848 848 <td> 849 <input type="text" name="mosaic_thumb_border_width" id="mosaic_thumb_border_width" value="<?php echo $row->mosaic_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px849 <input type="text" name="mosaic_thumb_border_width" id="mosaic_thumb_border_width" value="<?php echo esc_attr($row->mosaic_thumb_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 850 850 </td> 851 851 </tr> … … 857 857 foreach ($border_styles as $key => $border_style) { 858 858 ?> 859 <option value="<?php echo $key; ?>" <?php echo (($row->mosaic_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>859 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->mosaic_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 860 860 <?php 861 861 } … … 867 867 <td class="spider_label"><label for="mosaic_thumb_border_color"><?php echo __('Border color:', 'photo-gallery'); ?> </label></td> 868 868 <td> 869 <input type="text" name="mosaic_thumb_border_color" id="mosaic_thumb_border_color" value="<?php echo $row->mosaic_thumb_border_color; ?>" class="jscolor" />869 <input type="text" name="mosaic_thumb_border_color" id="mosaic_thumb_border_color" value="<?php echo esc_attr($row->mosaic_thumb_border_color); ?>" class="jscolor" /> 870 870 </td> 871 871 </tr> … … 873 873 <td class="spider_label"><label for="mosaic_thumb_border_radius"><?php echo __('Border radius:', 'photo-gallery'); ?> </label></td> 874 874 <td> 875 <input type="text" name="mosaic_thumb_border_radius" id="mosaic_thumb_border_radius" value="<?php echo $row->mosaic_thumb_border_radius; ?>" class="spider_char_input" />875 <input type="text" name="mosaic_thumb_border_radius" id="mosaic_thumb_border_radius" value="<?php echo esc_attr($row->mosaic_thumb_border_radius); ?>" class="spider_char_input" /> 876 876 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 877 877 </td> … … 884 884 foreach ($thumbnail_hover_effects as $key => $hover_effect) { 885 885 ?> 886 <option value="<?php echo $key; ?>" <?php echo (($row->mosaic_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo__($hover_effect, 'photo-gallery'); ?></option>886 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->mosaic_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($hover_effect, 'photo-gallery'); ?></option> 887 887 <?php 888 888 } … … 894 894 <td class="spider_label"><label for="mosaic_thumb_hover_effect_value"><?php echo __('Hover effect value:', 'photo-gallery'); ?> </label></td> 895 895 <td> 896 <input type="text" name="mosaic_thumb_hover_effect_value" id="mosaic_thumb_hover_effect_value" value="<?php echo $row->mosaic_thumb_hover_effect_value; ?>" class="spider_char_input" />896 <input type="text" name="mosaic_thumb_hover_effect_value" id="mosaic_thumb_hover_effect_value" value="<?php echo esc_attr($row->mosaic_thumb_hover_effect_value); ?>" class="spider_char_input" /> 897 897 <div class="spider_description"><?php echo __('E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg.', 'photo-gallery'); ?></div> 898 898 </td> … … 920 920 <td class="spider_label"><label for="mosaic_thumb_bg_color"><?php echo __('Thumbnail background color:', 'photo-gallery'); ?> </label></td> 921 921 <td> 922 <input type="text" name="mosaic_thumb_bg_color" id="mosaic_thumb_bg_color" value="<?php echo $row->mosaic_thumb_bg_color; ?>" class="jscolor" />922 <input type="text" name="mosaic_thumb_bg_color" id="mosaic_thumb_bg_color" value="<?php echo esc_attr($row->mosaic_thumb_bg_color); ?>" class="jscolor" /> 923 923 </td> 924 924 </tr> … … 926 926 <td class="spider_label"><label for="mosaic_thumb_bg_transparency"><?php echo __('Thumbnail background transparency:', 'photo-gallery'); ?> </label></td> 927 927 <td> 928 <input type="text" name="mosaic_thumb_bg_transparency" id="mosaic_thumb_bg_transparency" value="<?php echo $row->mosaic_thumb_bg_transparency; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %928 <input type="text" name="mosaic_thumb_bg_transparency" id="mosaic_thumb_bg_transparency" value="<?php echo esc_attr($row->mosaic_thumb_bg_transparency); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 929 929 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 930 930 </td> … … 933 933 <td class="spider_label"><label for="mosaic_thumb_transparent"><?php echo __('Transparency:', 'photo-gallery'); ?> </label></td> 934 934 <td> 935 <input type="text" name="mosaic_thumb_transparent" id="mosaic_thumb_transparent" value="<?php echo $row->mosaic_thumb_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %935 <input type="text" name="mosaic_thumb_transparent" id="mosaic_thumb_transparent" value="<?php echo esc_attr($row->mosaic_thumb_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 936 936 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 937 937 </td> … … 940 940 <td class="spider_label"><label for="mosaic_thumbs_bg_color"><?php echo __('Full Background color:', 'photo-gallery'); ?> </label></td> 941 941 <td> 942 <input type="text" name="mosaic_thumbs_bg_color" id="mosaic_thumbs_bg_color" value="<?php echo $row->mosaic_thumbs_bg_color; ?>" class="jscolor" />942 <input type="text" name="mosaic_thumbs_bg_color" id="mosaic_thumbs_bg_color" value="<?php echo esc_attr($row->mosaic_thumbs_bg_color); ?>" class="jscolor" /> 943 943 </td> 944 944 </tr> … … 946 946 <td class="spider_label"><label for="mosaic_thumb_bg_transparent"><?php echo __('Background transparency:', 'photo-gallery'); ?> </label></td> 947 947 <td> 948 <input type="text" name="mosaic_thumb_bg_transparent" id="mosaic_thumb_bg_transparent" value="<?php echo $row->mosaic_thumb_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %948 <input type="text" name="mosaic_thumb_bg_transparent" id="mosaic_thumb_bg_transparent" value="<?php echo esc_attr($row->mosaic_thumb_bg_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 949 949 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 950 950 </td> … … 957 957 foreach ($aligns as $key => $align) { 958 958 ?> 959 <option value="<?php echo $key; ?>" <?php echo (($row->mosaic_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>959 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->mosaic_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 960 960 <?php 961 961 } … … 977 977 <td class="spider_label"><label for="mosaic_thumb_title_font_size"><?php echo __('Title font size:', 'photo-gallery'); ?> </label></td> 978 978 <td> 979 <input type="text" name="mosaic_thumb_title_font_size" id="mosaic_thumb_title_font_size" value="<?php echo $row->mosaic_thumb_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px979 <input type="text" name="mosaic_thumb_title_font_size" id="mosaic_thumb_title_font_size" value="<?php echo esc_attr($row->mosaic_thumb_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 980 980 </td> 981 981 </tr> … … 983 983 <td class="spider_label"><label for="mosaic_thumb_title_font_color"><?php echo __('Title font color:', 'photo-gallery'); ?> </label></td> 984 984 <td> 985 <input type="text" name="mosaic_thumb_title_font_color" id="mosaic_thumb_title_font_color" value="<?php echo $row->mosaic_thumb_title_font_color; ?>" class="jscolor" />985 <input type="text" name="mosaic_thumb_title_font_color" id="mosaic_thumb_title_font_color" value="<?php echo esc_attr($row->mosaic_thumb_title_font_color); ?>" class="jscolor" /> 986 986 </td> 987 987 </tr> … … 989 989 <td class="spider_label"><label for="mosaic_thumb_title_font_color_hover"><?php echo __('Title font color (Show on hover):', 'photo-gallery'); ?> </label></td> 990 990 <td> 991 <input type="text" name="mosaic_thumb_title_font_color_hover" id="mosaic_thumb_title_font_color_hover" value="<?php echo $row->mosaic_thumb_title_font_color_hover; ?>" class="jscolor" />991 <input type="text" name="mosaic_thumb_title_font_color_hover" id="mosaic_thumb_title_font_color_hover" value="<?php echo esc_attr($row->mosaic_thumb_title_font_color_hover); ?>" class="jscolor" /> 992 992 </td> 993 993 </tr> … … 1003 1003 foreach ($font_weights as $key => $font_weight) { 1004 1004 ?> 1005 <option value="<?php echo $key; ?>" <?php echo (($row->mosaic_thumb_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>1005 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->mosaic_thumb_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 1006 1006 <?php 1007 1007 } … … 1013 1013 <td class="spider_label"><label for="mosaic_thumb_title_shadow"><?php echo __('Title box shadow:', 'photo-gallery'); ?> </label></td> 1014 1014 <td> 1015 <input type="text" name="mosaic_thumb_title_shadow" id="mosaic_thumb_title_shadow" value="<?php echo $row->mosaic_thumb_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />1015 <input type="text" name="mosaic_thumb_title_shadow" id="mosaic_thumb_title_shadow" value="<?php echo esc_attr($row->mosaic_thumb_title_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 1016 1016 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1017 1017 </td> … … 1020 1020 <td class="spider_label"><label for="mosaic_thumb_title_margin"><?php echo __('Title margin:', 'photo-gallery'); ?> </label></td> 1021 1021 <td> 1022 <input type="text" name="mosaic_thumb_title_margin" id="mosaic_thumb_title_margin" value="<?php echo $row->mosaic_thumb_title_margin; ?>" class="spider_char_input" />1022 <input type="text" name="mosaic_thumb_title_margin" id="mosaic_thumb_title_margin" value="<?php echo esc_attr($row->mosaic_thumb_title_margin); ?>" class="spider_char_input" /> 1023 1023 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1024 1024 </td> … … 1027 1027 <td class="spider_label"><label for="mosaic_thumb_gal_title_font_size"><?php echo __('Gallery title/description font size:', 'photo-gallery'); ?> </label></td> 1028 1028 <td> 1029 <input type="text" name="mosaic_thumb_gal_title_font_size" id="mosaic_thumb_gal_title_font_size" value="<?php echo $row->mosaic_thumb_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1029 <input type="text" name="mosaic_thumb_gal_title_font_size" id="mosaic_thumb_gal_title_font_size" value="<?php echo esc_attr($row->mosaic_thumb_gal_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1030 1030 </td> 1031 1031 </tr> … … 1033 1033 <td class="spider_label"><label for="mosaic_thumb_gal_title_font_color"><?php echo __('Gallery title/description font color:', 'photo-gallery'); ?> </label></td> 1034 1034 <td> 1035 <input type="text" name="mosaic_thumb_gal_title_font_color" id="mosaic_thumb_gal_title_font_color" value="<?php echo $row->mosaic_thumb_gal_title_font_color; ?>" class="jscolor" />1035 <input type="text" name="mosaic_thumb_gal_title_font_color" id="mosaic_thumb_gal_title_font_color" value="<?php echo esc_attr($row->mosaic_thumb_gal_title_font_color); ?>" class="jscolor" /> 1036 1036 </td> 1037 1037 </tr> … … 1047 1047 foreach ($font_weights as $key => $font_weight) { 1048 1048 ?> 1049 <option value="<?php echo $key; ?>" <?php echo (($row->mosaic_thumb_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>1049 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->mosaic_thumb_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 1050 1050 <?php 1051 1051 } … … 1057 1057 <td class="spider_label"><label for="mosaic_thumb_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', 'photo-gallery'); ?> </label></td> 1058 1058 <td> 1059 <input type="text" name="mosaic_thumb_gal_title_shadow" id="mosaic_thumb_gal_title_shadow" value="<?php echo $row->mosaic_thumb_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />1059 <input type="text" name="mosaic_thumb_gal_title_shadow" id="mosaic_thumb_gal_title_shadow" value="<?php echo esc_attr($row->mosaic_thumb_gal_title_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 1060 1060 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1061 1061 </td> … … 1064 1064 <td class="spider_label"><label for="mosaic_thumb_gal_title_margin"><?php echo __('Gallery title/description margin:', 'photo-gallery'); ?> </label></td> 1065 1065 <td> 1066 <input type="text" name="mosaic_thumb_gal_title_margin" id="mosaic_thumb_gal_title_margin" value="<?php echo $row->mosaic_thumb_gal_title_margin; ?>" class="spider_char_input" />1066 <input type="text" name="mosaic_thumb_gal_title_margin" id="mosaic_thumb_gal_title_margin" value="<?php echo esc_attr($row->mosaic_thumb_gal_title_margin); ?>" class="spider_char_input" /> 1067 1067 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1068 1068 </td> … … 1075 1075 foreach ($aligns as $key => $align) { 1076 1076 ?> 1077 <option value="<?php echo $key; ?>" <?php echo (($row->mosaic_thumb_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo _e($align, 'photo-gallery'); ?></option>1077 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->mosaic_thumb_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 1078 1078 <?php 1079 1079 } … … 1099 1099 <td class="spider_label"><label for="slideshow_cont_bg_color"><?php echo __('Background color:', 'photo-gallery'); ?> </label></td> 1100 1100 <td> 1101 <input type="text" name="slideshow_cont_bg_color" id="slideshow_cont_bg_color" value="<?php echo $row->slideshow_cont_bg_color; ?>" class="jscolor"/>1101 <input type="text" name="slideshow_cont_bg_color" id="slideshow_cont_bg_color" value="<?php echo esc_attr($row->slideshow_cont_bg_color); ?>" class="jscolor"/> 1102 1102 </td> 1103 1103 </tr> … … 1105 1105 <td class="spider_label"><label for="slideshow_rl_btn_size"><?php echo __('Right, left buttons size:', 'photo-gallery'); ?> </label></td> 1106 1106 <td> 1107 <input type="text" name="slideshow_rl_btn_size" id="slideshow_rl_btn_size" value="<?php echo $row->slideshow_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1107 <input type="text" name="slideshow_rl_btn_size" id="slideshow_rl_btn_size" value="<?php echo esc_attr($row->slideshow_rl_btn_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1108 1108 </td> 1109 1109 </tr> … … 1111 1111 <td class="spider_label"><label for="slideshow_play_pause_btn_size"><?php echo __('Play, pause buttons size:', 'photo-gallery'); ?> </label></td> 1112 1112 <td> 1113 <input type="text" name="slideshow_play_pause_btn_size" id="slideshow_play_pause_btn_size" value="<?php echo $row->slideshow_play_pause_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1113 <input type="text" name="slideshow_play_pause_btn_size" id="slideshow_play_pause_btn_size" value="<?php echo esc_attr($row->slideshow_play_pause_btn_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1114 1114 </td> 1115 1115 </tr> … … 1117 1117 <td class="spider_label"><label for="slideshow_rl_btn_color"><?php echo __('Buttons color:', 'photo-gallery'); ?> </label></td> 1118 1118 <td> 1119 <input type="text" name="slideshow_rl_btn_color" id="slideshow_rl_btn_color" value="<?php echo $row->slideshow_rl_btn_color; ?>" class="jscolor"/>1119 <input type="text" name="slideshow_rl_btn_color" id="slideshow_rl_btn_color" value="<?php echo esc_attr($row->slideshow_rl_btn_color); ?>" class="jscolor"/> 1120 1120 </td> 1121 1121 </tr> … … 1123 1123 <td class="spider_label"><label for="slideshow_close_btn_transparent"><?php echo __('Buttons transparency:', 'photo-gallery'); ?> </label></td> 1124 1124 <td> 1125 <input type="text" name="slideshow_close_btn_transparent" id="slideshow_close_btn_transparent" value="<?php echo $row->slideshow_close_btn_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %1125 <input type="text" name="slideshow_close_btn_transparent" id="slideshow_close_btn_transparent" value="<?php echo esc_attr($row->slideshow_close_btn_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 1126 1126 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 1127 1127 </td> … … 1130 1130 <td class="spider_label"><label for="slideshow_close_rl_btn_hover_color"><?php echo __('Buttons hover color:', 'photo-gallery'); ?> </label></td> 1131 1131 <td> 1132 <input type="text" name="slideshow_close_rl_btn_hover_color" id="slideshow_close_rl_btn_hover_color" value="<?php echo $row->slideshow_close_rl_btn_hover_color; ?>" class="jscolor"/>1132 <input type="text" name="slideshow_close_rl_btn_hover_color" id="slideshow_close_rl_btn_hover_color" value="<?php echo esc_attr($row->slideshow_close_rl_btn_hover_color); ?>" class="jscolor"/> 1133 1133 </td> 1134 1134 </tr> … … 1136 1136 <td class="spider_label"><label for="slideshow_rl_btn_width"><?php echo __('Right, left buttons width:', 'photo-gallery'); ?> </label></td> 1137 1137 <td> 1138 <input type="text" name="slideshow_rl_btn_width" id="slideshow_rl_btn_width" value="<?php echo $row->slideshow_rl_btn_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1138 <input type="text" name="slideshow_rl_btn_width" id="slideshow_rl_btn_width" value="<?php echo esc_attr($row->slideshow_rl_btn_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1139 1139 </td> 1140 1140 </tr> … … 1142 1142 <td class="spider_label"><label for="slideshow_rl_btn_height"><?php echo __('Right, left buttons height:', 'photo-gallery'); ?> </label></td> 1143 1143 <td> 1144 <input type="text" name="slideshow_rl_btn_height" id="slideshow_rl_btn_height" value="<?php echo $row->slideshow_rl_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1144 <input type="text" name="slideshow_rl_btn_height" id="slideshow_rl_btn_height" value="<?php echo esc_attr($row->slideshow_rl_btn_height); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1145 1145 </td> 1146 1146 </tr> … … 1148 1148 <td class="spider_label"><label for="slideshow_rl_btn_bg_color"><?php echo __('Right, left buttons background color:', 'photo-gallery'); ?> </label></td> 1149 1149 <td> 1150 <input type="text" name="slideshow_rl_btn_bg_color" id="slideshow_rl_btn_bg_color" value="<?php echo $row->slideshow_rl_btn_bg_color; ?>" class="jscolor"/>1150 <input type="text" name="slideshow_rl_btn_bg_color" id="slideshow_rl_btn_bg_color" value="<?php echo esc_attr($row->slideshow_rl_btn_bg_color); ?>" class="jscolor"/> 1151 1151 </td> 1152 1152 </tr> … … 1154 1154 <td class="spider_label"><label for="slideshow_rl_btn_border_width"><?php echo __('Right, left buttons border width:', 'photo-gallery'); ?> </label></td> 1155 1155 <td> 1156 <input type="text" name="slideshow_rl_btn_border_width" id="slideshow_rl_btn_border_width" value="<?php echo $row->slideshow_rl_btn_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1156 <input type="text" name="slideshow_rl_btn_border_width" id="slideshow_rl_btn_border_width" value="<?php echo esc_attr($row->slideshow_rl_btn_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1157 1157 </td> 1158 1158 </tr> … … 1164 1164 foreach ($border_styles as $key => $border_style) { 1165 1165 ?> 1166 <option value="<?php echo $key; ?>" <?php echo (($row->slideshow_rl_btn_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>1166 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->slideshow_rl_btn_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 1167 1167 <?php 1168 1168 } … … 1174 1174 <td class="spider_label"><label for="slideshow_rl_btn_border_color"><?php echo __('Right, left buttons border color:', 'photo-gallery'); ?> </label></td> 1175 1175 <td> 1176 <input type="text" name="slideshow_rl_btn_border_color" id="slideshow_rl_btn_border_color" value="<?php echo $row->slideshow_rl_btn_border_color; ?>" class="jscolor"/>1176 <input type="text" name="slideshow_rl_btn_border_color" id="slideshow_rl_btn_border_color" value="<?php echo esc_attr($row->slideshow_rl_btn_border_color); ?>" class="jscolor"/> 1177 1177 </td> 1178 1178 </tr> … … 1180 1180 <td class="spider_label"><label for="slideshow_rl_btn_border_radius"><?php echo __('Right, left buttons border radius:', 'photo-gallery'); ?> </label></td> 1181 1181 <td> 1182 <input type="text" name="slideshow_rl_btn_border_radius" id="slideshow_rl_btn_border_radius" value="<?php echo $row->slideshow_rl_btn_border_radius; ?>" class="spider_char_input"/>1182 <input type="text" name="slideshow_rl_btn_border_radius" id="slideshow_rl_btn_border_radius" value="<?php echo esc_attr($row->slideshow_rl_btn_border_radius); ?>" class="spider_char_input"/> 1183 1183 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1184 1184 </td> … … 1191 1191 foreach ($button_styles as $key => $button_style) { 1192 1192 ?> 1193 <option value="<?php echo $key; ?>" <?php echo (($row->slideshow_rl_btn_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($button_style, 'photo-gallery'); ?></option>1193 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->slideshow_rl_btn_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($button_style, 'photo-gallery'); ?></option> 1194 1194 <?php 1195 1195 } … … 1201 1201 <td class="spider_label"><label for="slideshow_rl_btn_box_shadow"><?php echo __('Right, left buttons box shadow:', 'photo-gallery'); ?> </label></td> 1202 1202 <td> 1203 <input type="text" name="slideshow_rl_btn_box_shadow" id="slideshow_rl_btn_box_shadow" value="<?php echo $row->slideshow_rl_btn_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />1203 <input type="text" name="slideshow_rl_btn_box_shadow" id="slideshow_rl_btn_box_shadow" value="<?php echo esc_attr($row->slideshow_rl_btn_box_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 1204 1204 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1205 1205 </td> … … 1229 1229 <td class="spider_label"><label for="slideshow_filmstrip_thumb_margin"><?php echo __('Filmstrip margin:', 'photo-gallery'); ?> </label></td> 1230 1230 <td> 1231 <input type="text" name="slideshow_filmstrip_thumb_margin" id="slideshow_filmstrip_thumb_margin" value="<?php echo $row->slideshow_filmstrip_thumb_margin; ?>" class="spider_char_input"/>1231 <input type="text" name="slideshow_filmstrip_thumb_margin" id="slideshow_filmstrip_thumb_margin" value="<?php echo esc_attr($row->slideshow_filmstrip_thumb_margin); ?>" class="spider_char_input"/> 1232 1232 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1233 1233 </td> … … 1236 1236 <td class="spider_label"><label for="slideshow_filmstrip_thumb_border_width"><?php echo __('Filmstrip border width:', 'photo-gallery'); ?> </label></td> 1237 1237 <td> 1238 <input type="text" name="slideshow_filmstrip_thumb_border_width" id="slideshow_filmstrip_thumb_border_width" value="<?php echo $row->slideshow_filmstrip_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1238 <input type="text" name="slideshow_filmstrip_thumb_border_width" id="slideshow_filmstrip_thumb_border_width" value="<?php echo esc_attr($row->slideshow_filmstrip_thumb_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1239 1239 </td> 1240 1240 </tr> … … 1247 1247 foreach ($border_styles as $key => $border_style) { 1248 1248 ?> 1249 <option value="<?php echo $key; ?>" <?php echo (($row->slideshow_filmstrip_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>1249 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->slideshow_filmstrip_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 1250 1250 <?php 1251 1251 } … … 1257 1257 <td class="spider_label"><label for="slideshow_filmstrip_thumb_border_color"><?php echo __('Filmstrip border color:', 'photo-gallery'); ?> </label></td> 1258 1258 <td> 1259 <input type="text" name="slideshow_filmstrip_thumb_border_color" id="slideshow_filmstrip_thumb_border_color" value="<?php echo $row->slideshow_filmstrip_thumb_border_color; ?>" class="jscolor"/>1259 <input type="text" name="slideshow_filmstrip_thumb_border_color" id="slideshow_filmstrip_thumb_border_color" value="<?php echo esc_attr($row->slideshow_filmstrip_thumb_border_color); ?>" class="jscolor"/> 1260 1260 </td> 1261 1261 </tr> … … 1263 1263 <td class="spider_label"><label for="slideshow_filmstrip_thumb_border_radius"><?php echo __('Filmstrip border radius:', 'photo-gallery'); ?> </label></td> 1264 1264 <td> 1265 <input type="text" name="slideshow_filmstrip_thumb_border_radius" id="slideshow_filmstrip_thumb_border_radius" value="<?php echo $row->slideshow_filmstrip_thumb_border_radius; ?>" class="spider_char_input"/>1265 <input type="text" name="slideshow_filmstrip_thumb_border_radius" id="slideshow_filmstrip_thumb_border_radius" value="<?php echo esc_attr($row->slideshow_filmstrip_thumb_border_radius); ?>" class="spider_char_input"/> 1266 1266 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1267 1267 </td> … … 1270 1270 <td class="spider_label"><label for="slideshow_filmstrip_thumb_active_border_width"><?php echo __('Filmstrip active border width:', 'photo-gallery'); ?> </label></td> 1271 1271 <td> 1272 <input type="text" name="slideshow_filmstrip_thumb_active_border_width" id="slideshow_filmstrip_thumb_active_border_width" value="<?php echo $row->slideshow_filmstrip_thumb_active_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/>px1272 <input type="text" name="slideshow_filmstrip_thumb_active_border_width" id="slideshow_filmstrip_thumb_active_border_width" value="<?php echo esc_attr($row->slideshow_filmstrip_thumb_active_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/>px 1273 1273 </td> 1274 1274 </tr> … … 1276 1276 <td class="spider_label"><label for="slideshow_filmstrip_thumb_active_border_color"><?php echo __('Filmstrip active border color:', 'photo-gallery'); ?> </label></td> 1277 1277 <td> 1278 <input type="text" name="slideshow_filmstrip_thumb_active_border_color" id="slideshow_filmstrip_thumb_active_border_color" value="<?php echo $row->slideshow_filmstrip_thumb_active_border_color; ?>" class="jscolor"/>1278 <input type="text" name="slideshow_filmstrip_thumb_active_border_color" id="slideshow_filmstrip_thumb_active_border_color" value="<?php echo esc_attr($row->slideshow_filmstrip_thumb_active_border_color); ?>" class="jscolor"/> 1279 1279 </td> 1280 1280 </tr> … … 1282 1282 <td class="spider_label"><label for="slideshow_filmstrip_thumb_deactive_transparent"><?php echo __('Filmstrip deactive transparency: ', 'photo-gallery'); ?></label></td> 1283 1283 <td> 1284 <input type="text" name="slideshow_filmstrip_thumb_deactive_transparent" id="slideshow_filmstrip_thumb_deactive_transparent" value="<?php echo $row->slideshow_filmstrip_thumb_deactive_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %1284 <input type="text" name="slideshow_filmstrip_thumb_deactive_transparent" id="slideshow_filmstrip_thumb_deactive_transparent" value="<?php echo esc_attr($row->slideshow_filmstrip_thumb_deactive_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 1285 1285 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 1286 1286 </td> … … 1289 1289 <td class="spider_label"><label for="slideshow_filmstrip_rl_bg_color"><?php echo __('Filmstrip right, left buttons background color: ', 'photo-gallery'); ?></label></td> 1290 1290 <td> 1291 <input type="text" name="slideshow_filmstrip_rl_bg_color" id="slideshow_filmstrip_rl_bg_color" value="<?php echo $row->slideshow_filmstrip_rl_bg_color; ?>" class="jscolor"/>1291 <input type="text" name="slideshow_filmstrip_rl_bg_color" id="slideshow_filmstrip_rl_bg_color" value="<?php echo esc_attr($row->slideshow_filmstrip_rl_bg_color); ?>" class="jscolor"/> 1292 1292 </td> 1293 1293 </tr> … … 1295 1295 <td class="spider_label"><label for="slideshow_filmstrip_rl_btn_color"><?php echo __('Filmstrip right, left buttons color:', 'photo-gallery'); ?> </label></td> 1296 1296 <td> 1297 <input type="text" name="slideshow_filmstrip_rl_btn_color" id="slideshow_filmstrip_rl_btn_color" value="<?php echo $row->slideshow_filmstrip_rl_btn_color; ?>" class="jscolor"/>1297 <input type="text" name="slideshow_filmstrip_rl_btn_color" id="slideshow_filmstrip_rl_btn_color" value="<?php echo esc_attr($row->slideshow_filmstrip_rl_btn_color); ?>" class="jscolor"/> 1298 1298 </td> 1299 1299 </tr> … … 1301 1301 <td class="spider_label"><label for="slideshow_filmstrip_rl_btn_size"><?php echo __('Filmstrip right, left buttons size:', 'photo-gallery'); ?> </label></td> 1302 1302 <td> 1303 <input type="text" name="slideshow_filmstrip_rl_btn_size" id="slideshow_filmstrip_rl_btn_size" value="<?php echo $row->slideshow_filmstrip_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px1303 <input type="text" name="slideshow_filmstrip_rl_btn_size" id="slideshow_filmstrip_rl_btn_size" value="<?php echo esc_attr($row->slideshow_filmstrip_rl_btn_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px 1304 1304 </td> 1305 1305 </tr> … … 1307 1307 <td class="spider_label"><label for="slideshow_dots_width"><?php echo __('Slider bullet width: ', 'photo-gallery'); ?></label></td> 1308 1308 <td> 1309 <input type="text" name="slideshow_dots_width" id="slideshow_dots_width" value="<?php echo $row->slideshow_dots_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1309 <input type="text" name="slideshow_dots_width" id="slideshow_dots_width" value="<?php echo esc_attr($row->slideshow_dots_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1310 1310 </td> 1311 1311 </tr> … … 1313 1313 <td class="spider_label"><label for="slideshow_dots_height"><?php echo __('Slider bullet height:', 'photo-gallery'); ?> </label></td> 1314 1314 <td> 1315 <input type="text" name="slideshow_dots_height" id="slideshow_dots_height" value="<?php echo $row->slideshow_dots_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1315 <input type="text" name="slideshow_dots_height" id="slideshow_dots_height" value="<?php echo esc_attr($row->slideshow_dots_height); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1316 1316 </td> 1317 1317 </tr> … … 1319 1319 <td class="spider_label"><label for="slideshow_dots_border_radius"><?php echo __('Slider bullet border radius: ', 'photo-gallery'); ?></label></td> 1320 1320 <td> 1321 <input type="text" name="slideshow_dots_border_radius" id="slideshow_dots_border_radius" value="<?php echo $row->slideshow_dots_border_radius; ?>" class="spider_char_input"/>1321 <input type="text" name="slideshow_dots_border_radius" id="slideshow_dots_border_radius" value="<?php echo esc_attr($row->slideshow_dots_border_radius); ?>" class="spider_char_input"/> 1322 1322 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1323 1323 </td> … … 1326 1326 <td class="spider_label"><label for="slideshow_dots_background_color"><?php echo __('Slider bullet background color:', 'photo-gallery'); ?> </label></td> 1327 1327 <td> 1328 <input type="text" name="slideshow_dots_background_color" id="slideshow_dots_background_color" value="<?php echo $row->slideshow_dots_background_color; ?>" class="jscolor"/>1328 <input type="text" name="slideshow_dots_background_color" id="slideshow_dots_background_color" value="<?php echo esc_attr($row->slideshow_dots_background_color); ?>" class="jscolor"/> 1329 1329 </td> 1330 1330 </tr> … … 1332 1332 <td class="spider_label"><label for="slideshow_dots_margin"><?php echo __('Slider bullet margin:', 'photo-gallery'); ?> </label></td> 1333 1333 <td> 1334 <input type="text" name="slideshow_dots_margin" id="slideshow_dots_margin" value="<?php echo $row->slideshow_dots_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1334 <input type="text" name="slideshow_dots_margin" id="slideshow_dots_margin" value="<?php echo esc_attr($row->slideshow_dots_margin); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1335 1335 </td> 1336 1336 </tr> … … 1338 1338 <td class="spider_label"><label for="slideshow_dots_active_background_color"><?php echo __('Slider bullet active background color: ', 'photo-gallery'); ?></label></td> 1339 1339 <td> 1340 <input type="text" name="slideshow_dots_active_background_color" id="slideshow_dots_active_background_color" value="<?php echo $row->slideshow_dots_active_background_color; ?>" class="jscolor"/>1340 <input type="text" name="slideshow_dots_active_background_color" id="slideshow_dots_active_background_color" value="<?php echo esc_attr($row->slideshow_dots_active_background_color); ?>" class="jscolor"/> 1341 1341 </td> 1342 1342 </tr> … … 1344 1344 <td class="spider_label"><label for="slideshow_dots_active_border_width"><?php echo __('Slider bullet active border width:', 'photo-gallery'); ?> </label></td> 1345 1345 <td> 1346 <input type="text" name="slideshow_dots_active_border_width" id="slideshow_dots_active_border_width" value="<?php echo $row->slideshow_dots_active_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1346 <input type="text" name="slideshow_dots_active_border_width" id="slideshow_dots_active_border_width" value="<?php echo esc_attr($row->slideshow_dots_active_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1347 1347 </td> 1348 1348 </tr> … … 1350 1350 <td class="spider_label"><label for="slideshow_dots_active_border_color"><?php echo __('Slider bullet active border color: ', 'photo-gallery'); ?></label></td> 1351 1351 <td> 1352 <input type="text" name="slideshow_dots_active_border_color" id="slideshow_dots_active_border_color" value="<?php echo $row->slideshow_dots_active_border_color; ?>" class="jscolor"/>1352 <input type="text" name="slideshow_dots_active_border_color" id="slideshow_dots_active_border_color" value="<?php echo esc_attr($row->slideshow_dots_active_border_color); ?>" class="jscolor"/> 1353 1353 </td> 1354 1354 </tr> … … 1366 1366 <td class="spider_label"><label for="slideshow_title_background_color"><?php echo __('Title background color: ', 'photo-gallery'); ?></label></td> 1367 1367 <td> 1368 <input type="text" name="slideshow_title_background_color" id="slideshow_title_background_color" value="<?php echo $row->slideshow_title_background_color; ?>" class="jscolor"/>1368 <input type="text" name="slideshow_title_background_color" id="slideshow_title_background_color" value="<?php echo esc_attr($row->slideshow_title_background_color); ?>" class="jscolor"/> 1369 1369 </td> 1370 1370 </tr> … … 1372 1372 <td class="spider_label"><label for="slideshow_title_opacity"><?php echo __('Title transparency: ', 'photo-gallery'); ?></label></td> 1373 1373 <td> 1374 <input type="text" name="slideshow_title_opacity" id="slideshow_title_opacity" value="<?php echo $row->slideshow_title_opacity; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %1374 <input type="text" name="slideshow_title_opacity" id="slideshow_title_opacity" value="<?php echo esc_attr($row->slideshow_title_opacity); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 1375 1375 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 1376 1376 </td> … … 1379 1379 <td class="spider_label"><label for="slideshow_title_border_radius"><?php echo __('Title border radius:', 'photo-gallery'); ?> </label></td> 1380 1380 <td> 1381 <input type="text" name="slideshow_title_border_radius" id="slideshow_title_border_radius" value="<?php echo $row->slideshow_title_border_radius; ?>" class="spider_char_input"/>1381 <input type="text" name="slideshow_title_border_radius" id="slideshow_title_border_radius" value="<?php echo esc_attr($row->slideshow_title_border_radius); ?>" class="spider_char_input"/> 1382 1382 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1383 1383 </td> … … 1386 1386 <td class="spider_label"><label for="slideshow_title_padding"><?php echo __('Title padding: ', 'photo-gallery'); ?></label></td> 1387 1387 <td> 1388 <input type="text" name="slideshow_title_padding" id="slideshow_title_padding" value="<?php echo $row->slideshow_title_padding; ?>" class="spider_char_input"/>1388 <input type="text" name="slideshow_title_padding" id="slideshow_title_padding" value="<?php echo esc_attr($row->slideshow_title_padding); ?>" class="spider_char_input"/> 1389 1389 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1390 1390 </td> … … 1393 1393 <td class="spider_label"><label for="slideshow_title_font_size"><?php echo __('Title font size: ', 'photo-gallery'); ?></label></td> 1394 1394 <td> 1395 <input type="text" name="slideshow_title_font_size" id="slideshow_title_font_size" value="<?php echo $row->slideshow_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px1395 <input type="text" name="slideshow_title_font_size" id="slideshow_title_font_size" value="<?php echo esc_attr($row->slideshow_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px 1396 1396 </td> 1397 1397 </tr> … … 1399 1399 <td class="spider_label"><label for="slideshow_title_color"><?php echo __('Title color: ', 'photo-gallery'); ?></label></td> 1400 1400 <td> 1401 <input type="text" name="slideshow_title_color" id="slideshow_title_color" value="<?php echo $row->slideshow_title_color; ?>" class="jscolor"/>1401 <input type="text" name="slideshow_title_color" id="slideshow_title_color" value="<?php echo esc_attr($row->slideshow_title_color); ?>" class="jscolor"/> 1402 1402 </td> 1403 1403 </tr> … … 1409 1409 <td class="spider_label"><label for="slideshow_description_background_color"><?php echo __('Description background color:', 'photo-gallery'); ?> </label></td> 1410 1410 <td> 1411 <input type="text" name="slideshow_description_background_color" id="slideshow_description_background_color" value="<?php echo $row->slideshow_description_background_color; ?>" class="jscolor"/>1411 <input type="text" name="slideshow_description_background_color" id="slideshow_description_background_color" value="<?php echo esc_attr($row->slideshow_description_background_color); ?>" class="jscolor"/> 1412 1412 </td> 1413 1413 </tr> … … 1415 1415 <td class="spider_label"><label for="slideshow_description_opacity"><?php echo __('Description transparency:', 'photo-gallery'); ?> </label></td> 1416 1416 <td> 1417 <input type="text" name="slideshow_description_opacity" id="slideshow_description_opacity" value="<?php echo $row->slideshow_description_opacity; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %1417 <input type="text" name="slideshow_description_opacity" id="slideshow_description_opacity" value="<?php echo esc_attr($row->slideshow_description_opacity); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 1418 1418 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 1419 1419 </td> … … 1422 1422 <td class="spider_label"><label for="slideshow_description_border_radius"><?php echo __('Description border radius:', 'photo-gallery'); ?> </label></td> 1423 1423 <td> 1424 <input type="text" name="slideshow_description_border_radius" id="slideshow_description_border_radius" value="<?php echo $row->slideshow_description_border_radius; ?>" class="spider_char_input"/>1424 <input type="text" name="slideshow_description_border_radius" id="slideshow_description_border_radius" value="<?php echo esc_attr($row->slideshow_description_border_radius); ?>" class="spider_char_input"/> 1425 1425 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1426 1426 </td> … … 1429 1429 <td class="spider_label"><label for="slideshow_description_padding"><?php echo __('Description padding:', 'photo-gallery'); ?> </label></td> 1430 1430 <td> 1431 <input type="text" name="slideshow_description_padding" id="slideshow_description_padding" value="<?php echo $row->slideshow_description_padding; ?>" class="spider_char_input"/>1431 <input type="text" name="slideshow_description_padding" id="slideshow_description_padding" value="<?php echo esc_attr($row->slideshow_description_padding); ?>" class="spider_char_input"/> 1432 1432 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1433 1433 </td> … … 1436 1436 <td class="spider_label"><label for="slideshow_description_font_size"><?php echo __('Description font size:', 'photo-gallery'); ?> </label></td> 1437 1437 <td> 1438 <input type="text" name="slideshow_description_font_size" id="slideshow_description_font_size" value="<?php echo $row->slideshow_description_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1438 <input type="text" name="slideshow_description_font_size" id="slideshow_description_font_size" value="<?php echo esc_attr($row->slideshow_description_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1439 1439 </td> 1440 1440 </tr> … … 1442 1442 <td class="spider_label"><label for="slideshow_description_color"><?php echo __('Description color:', 'photo-gallery'); ?> </label></td> 1443 1443 <td> 1444 <input type="text" name="slideshow_description_color" id="slideshow_description_color" value="<?php echo $row->slideshow_description_color; ?>" class="jscolor"/>1444 <input type="text" name="slideshow_description_color" id="slideshow_description_color" value="<?php echo esc_attr($row->slideshow_description_color); ?>" class="jscolor"/> 1445 1445 </td> 1446 1446 </tr> … … 1466 1466 <td class="spider_label"><label for="image_browser_full_padding"><?php echo __('Full padding:', 'photo-gallery'); ?> </label></td> 1467 1467 <td> 1468 <input type="text" name="image_browser_full_padding" id="image_browser_full_padding" value="<?php echo $row->image_browser_full_padding; ?>" class="spider_char_input"/>1468 <input type="text" name="image_browser_full_padding" id="image_browser_full_padding" value="<?php echo esc_attr($row->image_browser_full_padding); ?>" class="spider_char_input"/> 1469 1469 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1470 1470 </td> … … 1473 1473 <td class="spider_label"><label for="image_browser_full_bg_color"><?php echo __('Full background color:', 'photo-gallery'); ?> </label></td> 1474 1474 <td> 1475 <input type="text" name="image_browser_full_bg_color" id="image_browser_full_bg_color" value="<?php echo $row->image_browser_full_bg_color; ?>" class="jscolor" />1475 <input type="text" name="image_browser_full_bg_color" id="image_browser_full_bg_color" value="<?php echo esc_attr($row->image_browser_full_bg_color); ?>" class="jscolor" /> 1476 1476 </td> 1477 1477 </tr> … … 1479 1479 <td class="spider_label"><label for="image_browser_full_transparent"><?php echo __('Full background transparency:', 'photo-gallery'); ?> </label></td> 1480 1480 <td> 1481 <input type="text" name="image_browser_full_transparent" id="image_browser_full_transparent" value="<?php echo $row->image_browser_full_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %1481 <input type="text" name="image_browser_full_transparent" id="image_browser_full_transparent" value="<?php echo esc_attr($row->image_browser_full_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 1482 1482 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 1483 1483 </td> … … 1486 1486 <td class="spider_label"><label for="image_browser_full_border_radius"><?php echo __('Full border radius:', 'photo-gallery'); ?> </label></td> 1487 1487 <td> 1488 <input type="text" name="image_browser_full_border_radius" id="image_browser_full_border_radius" value="<?php echo $row->image_browser_full_border_radius; ?>" class="spider_char_input" />1488 <input type="text" name="image_browser_full_border_radius" id="image_browser_full_border_radius" value="<?php echo esc_attr($row->image_browser_full_border_radius); ?>" class="spider_char_input" /> 1489 1489 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1490 1490 </td> … … 1493 1493 <td class="spider_label"><label for="image_browser_full_border_width"><?php echo __('Full border width:', 'photo-gallery'); ?> </label></td> 1494 1494 <td> 1495 <input type="text" name="image_browser_full_border_width" id="image_browser_full_border_width" value="<?php echo $row->image_browser_full_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1495 <input type="text" name="image_browser_full_border_width" id="image_browser_full_border_width" value="<?php echo esc_attr($row->image_browser_full_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1496 1496 </td> 1497 1497 </tr> … … 1503 1503 foreach ($border_styles as $key => $border_style) { 1504 1504 ?> 1505 <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_full_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>1505 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->image_browser_full_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 1506 1506 <?php 1507 1507 } … … 1513 1513 <td class="spider_label"><label for="image_browser_full_border_color"><?php echo __('Full border color:', 'photo-gallery'); ?> </label></td> 1514 1514 <td> 1515 <input type="text" name="image_browser_full_border_color" id="image_browser_full_border_color" value="<?php echo $row->image_browser_full_border_color; ?>" class="jscolor" />1515 <input type="text" name="image_browser_full_border_color" id="image_browser_full_border_color" value="<?php echo esc_attr($row->image_browser_full_border_color); ?>" class="jscolor" /> 1516 1516 </td> 1517 1517 </tr> … … 1533 1533 foreach ($aligns as $key => $align) { 1534 1534 ?> 1535 <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>1535 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->image_browser_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 1536 1536 <?php 1537 1537 } … … 1543 1543 <td class="spider_label"><label for="image_browser_margin"><?php echo __('Margin:', 'photo-gallery'); ?> </label></td> 1544 1544 <td> 1545 <input type="text" name="image_browser_margin" id="image_browser_margin" value="<?php echo $row->image_browser_margin; ?>" class="spider_char_input" />1545 <input type="text" name="image_browser_margin" id="image_browser_margin" value="<?php echo esc_attr($row->image_browser_margin); ?>" class="spider_char_input" /> 1546 1546 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1547 1547 </td> … … 1550 1550 <td class="spider_label"><label for="image_browser_padding"><?php echo __('Padding:', 'photo-gallery'); ?> </label></td> 1551 1551 <td> 1552 <input type="text" name="image_browser_padding" id="image_browser_padding" value="<?php echo $row->image_browser_padding; ?>" class="spider_char_input" />1552 <input type="text" name="image_browser_padding" id="image_browser_padding" value="<?php echo esc_attr($row->image_browser_padding); ?>" class="spider_char_input" /> 1553 1553 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1554 1554 </td> … … 1557 1557 <td class="spider_label"><label for="image_browser_border_width"><?php echo __('Border width:', 'photo-gallery'); ?> </label></td> 1558 1558 <td> 1559 <input type="text" name="image_browser_border_width" id="image_browser_border_width" value="<?php echo $row->image_browser_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1559 <input type="text" name="image_browser_border_width" id="image_browser_border_width" value="<?php echo esc_attr($row->image_browser_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1560 1560 </td> 1561 1561 </tr> … … 1567 1567 foreach ($border_styles as $key => $border_style) { 1568 1568 ?> 1569 <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>1569 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->image_browser_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 1570 1570 <?php 1571 1571 } … … 1577 1577 <td class="spider_label"><label for="image_browser_border_color"><?php echo __('Border color:', 'photo-gallery'); ?> </label></td> 1578 1578 <td> 1579 <input type="text" name="image_browser_border_color" id="image_browser_border_color" value="<?php echo $row->image_browser_border_color; ?>" class="jscolor" />1579 <input type="text" name="image_browser_border_color" id="image_browser_border_color" value="<?php echo esc_attr($row->image_browser_border_color); ?>" class="jscolor" /> 1580 1580 </td> 1581 1581 </tr> … … 1583 1583 <td class="spider_label"><label for="image_browser_border_radius"><?php echo __('Border radius:', 'photo-gallery'); ?> </label></td> 1584 1584 <td> 1585 <input type="text" name="image_browser_border_radius" id="image_browser_border_radius" value="<?php echo $row->image_browser_border_radius; ?>" class="spider_char_input" />1585 <input type="text" name="image_browser_border_radius" id="image_browser_border_radius" value="<?php echo esc_attr($row->image_browser_border_radius); ?>" class="spider_char_input" /> 1586 1586 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1587 1587 </td> … … 1590 1590 <td class="spider_label"><label for="image_browser_bg_color"><?php echo __('Background color:', 'photo-gallery'); ?> </label></td> 1591 1591 <td> 1592 <input type="text" name="image_browser_bg_color" id="image_browser_bg_color" value="<?php echo $row->image_browser_bg_color; ?>" class="jscolor" />1592 <input type="text" name="image_browser_bg_color" id="image_browser_bg_color" value="<?php echo esc_attr($row->image_browser_bg_color); ?>" class="jscolor" /> 1593 1593 </td> 1594 1594 </tr> … … 1596 1596 <td class="spider_label"><label for="image_browser_transparent"><?php echo __('Background transparency:', 'photo-gallery'); ?> </label></td> 1597 1597 <td> 1598 <input type="text" name="image_browser_transparent" id="image_browser_transparent" value="<?php echo $row->image_browser_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %1598 <input type="text" name="image_browser_transparent" id="image_browser_transparent" value="<?php echo esc_attr($row->image_browser_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 1599 1599 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 1600 1600 </td> … … 1603 1603 <td class="spider_label"><label for="image_browser_box_shadow"><?php echo __('Box shadow:', 'photo-gallery'); ?> </label></td> 1604 1604 <td> 1605 <input type="text" name="image_browser_box_shadow" id="image_browser_box_shadow" value="<?php echo $row->image_browser_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />1605 <input type="text" name="image_browser_box_shadow" id="image_browser_box_shadow" value="<?php echo esc_attr($row->image_browser_box_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 1606 1606 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1607 1607 </td> … … 1633 1633 foreach ($aligns as $key => $align) { 1634 1634 ?> 1635 <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_image_description_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>1635 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->image_browser_image_description_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 1636 1636 <?php 1637 1637 } … … 1643 1643 <td class="spider_label"><label for="image_browser_img_font_size"><?php echo __('Font size:', 'photo-gallery'); ?> </label></td> 1644 1644 <td> 1645 <input type="text" name="image_browser_img_font_size" id="image_browser_img_font_size" value="<?php echo $row->image_browser_img_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1645 <input type="text" name="image_browser_img_font_size" id="image_browser_img_font_size" value="<?php echo esc_attr($row->image_browser_img_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1646 1646 </td> 1647 1647 </tr> … … 1649 1649 <td class="spider_label"><label for="image_browser_img_font_color"><?php echo __('Font color:', 'photo-gallery'); ?> </label></td> 1650 1650 <td> 1651 <input type="text" name="image_browser_img_font_color" id="image_browser_img_font_color" value="<?php echo $row->image_browser_img_font_color; ?>" class="jscolor" />1651 <input type="text" name="image_browser_img_font_color" id="image_browser_img_font_color" value="<?php echo esc_attr($row->image_browser_img_font_color); ?>" class="jscolor" /> 1652 1652 </td> 1653 1653 </tr> … … 1659 1659 <td class="spider_label"><label for="image_browser_image_description_margin"><?php echo __('Description margin:', 'photo-gallery'); ?> </label></td> 1660 1660 <td> 1661 <input type="text" name="image_browser_image_description_margin" id="image_browser_image_description_margin" value="<?php echo $row->image_browser_image_description_margin; ?>" class="spider_char_input" />1661 <input type="text" name="image_browser_image_description_margin" id="image_browser_image_description_margin" value="<?php echo esc_attr($row->image_browser_image_description_margin); ?>" class="spider_char_input" /> 1662 1662 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1663 1663 </td> … … 1666 1666 <td class="spider_label"><label for="image_browser_image_description_padding"><?php echo __('Description padding:', 'photo-gallery'); ?> </label></td> 1667 1667 <td> 1668 <input type="text" name="image_browser_image_description_padding" id="image_browser_image_description_padding" value="<?php echo $row->image_browser_image_description_padding; ?>" class="spider_char_input" />1668 <input type="text" name="image_browser_image_description_padding" id="image_browser_image_description_padding" value="<?php echo esc_attr($row->image_browser_image_description_padding); ?>" class="spider_char_input" /> 1669 1669 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1670 1670 </td> … … 1673 1673 <td class="spider_label"><label for="image_browser_image_description_border_width"><?php echo __('Description border width:', 'photo-gallery'); ?> </label></td> 1674 1674 <td> 1675 <input type="text" name="image_browser_image_description_border_width" id="image_browser_image_description_border_width" value="<?php echo $row->image_browser_image_description_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px1675 <input type="text" name="image_browser_image_description_border_width" id="image_browser_image_description_border_width" value="<?php echo esc_attr($row->image_browser_image_description_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px 1676 1676 </td> 1677 1677 </tr> … … 1683 1683 foreach ($border_styles as $key => $border_style) { 1684 1684 ?> 1685 <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_image_description_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>1685 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->image_browser_image_description_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 1686 1686 <?php 1687 1687 } … … 1693 1693 <td class="spider_label"><label for="image_browser_image_description_border_color"><?php echo __('Description border color:', 'photo-gallery'); ?> </label></td> 1694 1694 <td> 1695 <input type="text" name="image_browser_image_description_border_color" id="image_browser_image_description_border_color" value="<?php echo $row->image_browser_image_description_border_color; ?>" class="jscolor" />1695 <input type="text" name="image_browser_image_description_border_color" id="image_browser_image_description_border_color" value="<?php echo esc_attr($row->image_browser_image_description_border_color); ?>" class="jscolor" /> 1696 1696 </td> 1697 1697 </tr> … … 1699 1699 <td class="spider_label"><label for="image_browser_image_description_border_radius"><?php echo __('Description border radius:', 'photo-gallery'); ?> </label></td> 1700 1700 <td> 1701 <input type="text" name="image_browser_image_description_border_radius" id="image_browser_image_description_border_radius" value="<?php echo $row->image_browser_image_description_border_radius; ?>" class="spider_char_input" />1701 <input type="text" name="image_browser_image_description_border_radius" id="image_browser_image_description_border_radius" value="<?php echo esc_attr($row->image_browser_image_description_border_radius); ?>" class="spider_char_input" /> 1702 1702 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1703 1703 </td> … … 1706 1706 <td class="spider_label"><label for="image_browser_image_description_bg_color"><?php echo __('Description background color:', 'photo-gallery'); ?> </label></td> 1707 1707 <td> 1708 <input type="text" name="image_browser_image_description_bg_color" id="image_browser_image_description_bg_color" value="<?php echo $row->image_browser_image_description_bg_color; ?>" class="jscolor" />1708 <input type="text" name="image_browser_image_description_bg_color" id="image_browser_image_description_bg_color" value="<?php echo esc_attr($row->image_browser_image_description_bg_color); ?>" class="jscolor" /> 1709 1709 </td> 1710 1710 </tr> … … 1713 1713 <td> 1714 1714 <input type="text" name="image_browser_gal_title_font_size" id="image_browser_gal_title_font_size" value="<?php echo 1715 $row->image_browser_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1715 esc_attr($row->image_browser_gal_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1716 1716 </td> 1717 1717 </tr> … … 1719 1719 <td class="spider_label"><label for="image_browser_gal_title_font_color"><?php echo __('Gallery title/description font color:', 'photo-gallery'); ?> </label></td> 1720 1720 <td> 1721 <input type="text" name="image_browser_gal_title_font_color" id="image_browser_gal_title_font_color" value="<?php echo $row->image_browser_gal_title_font_color; ?>" class="jscolor" />1721 <input type="text" name="image_browser_gal_title_font_color" id="image_browser_gal_title_font_color" value="<?php echo esc_attr($row->image_browser_gal_title_font_color); ?>" class="jscolor" /> 1722 1722 </td> 1723 1723 </tr> … … 1733 1733 foreach ($font_weights as $key => $font_weight) { 1734 1734 ?> 1735 <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>1735 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->image_browser_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 1736 1736 <?php 1737 1737 } … … 1743 1743 <td class="spider_label"><label for="image_browser_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', 'photo-gallery'); ?> </label></td> 1744 1744 <td> 1745 <input type="text" name="image_browser_gal_title_shadow" id="image_browser_gal_title_shadow" value="<?php echo $row->image_browser_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />1745 <input type="text" name="image_browser_gal_title_shadow" id="image_browser_gal_title_shadow" value="<?php echo esc_attr($row->image_browser_gal_title_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 1746 1746 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1747 1747 </td> … … 1750 1750 <td class="spider_label"><label for="image_browser_gal_title_margin"><?php echo __('Gallery title/description margin:', 'photo-gallery'); ?> </label></td> 1751 1751 <td> 1752 <input type="text" name="image_browser_gal_title_margin" id="image_browser_gal_title_margin" value="<?php echo $row->image_browser_gal_title_margin; ?>" class="spider_char_input" />1752 <input type="text" name="image_browser_gal_title_margin" id="image_browser_gal_title_margin" value="<?php echo esc_attr($row->image_browser_gal_title_margin); ?>" class="spider_char_input" /> 1753 1753 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1754 1754 </td> … … 1761 1761 foreach ($aligns as $key => $align) { 1762 1762 ?> 1763 <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo _e($align, 'photo-gallery'); ?></option>1763 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->image_browser_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 1764 1764 <?php 1765 1765 } … … 1785 1785 <td class="spider_label"><label for="album_compact_thumb_margin"><?php _e('Distance between pictures:', 'photo-gallery'); ?> </label></td> 1786 1786 <td> 1787 <input type="text" name="album_compact_thumb_margin" id="album_compact_thumb_margin" value="<?php echo $row->album_compact_thumb_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1787 <input type="text" name="album_compact_thumb_margin" id="album_compact_thumb_margin" value="<?php echo esc_attr($row->album_compact_thumb_margin); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1788 1788 </td> 1789 1789 </tr> … … 1801 1801 <td class="spider_label"><label for="album_compact_thumb_padding"><?php echo __('Padding:', 'photo-gallery'); ?> </label></td> 1802 1802 <td> 1803 <input type="text" name="album_compact_thumb_padding" id="album_compact_thumb_padding" value="<?php echo $row->album_compact_thumb_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1803 <input type="text" name="album_compact_thumb_padding" id="album_compact_thumb_padding" value="<?php echo esc_attr($row->album_compact_thumb_padding); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1804 1804 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1805 1805 </td> … … 1808 1808 <td class="spider_label"><label for="album_compact_thumb_border_width"><?php echo __('Border width:', 'photo-gallery'); ?> </label></td> 1809 1809 <td> 1810 <input type="text" name="album_compact_thumb_border_width" id="album_compact_thumb_border_width" value="<?php echo $row->album_compact_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1810 <input type="text" name="album_compact_thumb_border_width" id="album_compact_thumb_border_width" value="<?php echo esc_attr($row->album_compact_thumb_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1811 1811 </td> 1812 1812 </tr> … … 1818 1818 foreach ($border_styles as $key => $border_style) { 1819 1819 ?> 1820 <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>1820 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_compact_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 1821 1821 <?php 1822 1822 } … … 1828 1828 <td class="spider_label"><label for="album_compact_thumb_border_color"><?php echo __('Border color:', 'photo-gallery'); ?> </label></td> 1829 1829 <td> 1830 <input type="text" name="album_compact_thumb_border_color" id="album_compact_thumb_border_color" value="<?php echo $row->album_compact_thumb_border_color; ?>" class="jscolor" />1830 <input type="text" name="album_compact_thumb_border_color" id="album_compact_thumb_border_color" value="<?php echo esc_attr($row->album_compact_thumb_border_color); ?>" class="jscolor" /> 1831 1831 </td> 1832 1832 </tr> … … 1834 1834 <td class="spider_label"><label for="album_compact_thumb_border_radius"><?php echo __('Border radius:', 'photo-gallery'); ?> </label></td> 1835 1835 <td> 1836 <input type="text" name="album_compact_thumb_border_radius" id="album_compact_thumb_border_radius" value="<?php echo $row->album_compact_thumb_border_radius; ?>" class="spider_char_input" />1836 <input type="text" name="album_compact_thumb_border_radius" id="album_compact_thumb_border_radius" value="<?php echo esc_attr($row->album_compact_thumb_border_radius); ?>" class="spider_char_input" /> 1837 1837 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1838 1838 </td> … … 1841 1841 <td class="spider_label"><label for="album_compact_thumb_box_shadow"><?php echo __('Shadow:', 'photo-gallery'); ?> </label></td> 1842 1842 <td> 1843 <input type="text" name="album_compact_thumb_box_shadow" id="album_compact_thumb_box_shadow" value="<?php echo $row->album_compact_thumb_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />1843 <input type="text" name="album_compact_thumb_box_shadow" id="album_compact_thumb_box_shadow" value="<?php echo esc_attr($row->album_compact_thumb_box_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 1844 1844 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1845 1845 </td> … … 1852 1852 foreach ($thumbnail_hover_effects as $key => $hover_effect) { 1853 1853 ?> 1854 <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo__($hover_effect, 'photo-gallery'); ?></option>1854 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_compact_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($hover_effect, 'photo-gallery'); ?></option> 1855 1855 <?php 1856 1856 } … … 1862 1862 <td class="spider_label"><label for="album_compact_thumb_hover_effect_value"><?php echo __('Hover effect value:', 'photo-gallery'); ?> </label></td> 1863 1863 <td> 1864 <input type="text" name="album_compact_thumb_hover_effect_value" id="album_compact_thumb_hover_effect_value" value="<?php echo $row->album_compact_thumb_hover_effect_value; ?>" class="spider_char_input" />1864 <input type="text" name="album_compact_thumb_hover_effect_value" id="album_compact_thumb_hover_effect_value" value="<?php echo esc_attr($row->album_compact_thumb_hover_effect_value); ?>" class="spider_char_input" /> 1865 1865 <div class="spider_description"><?php echo __('E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg.', 'photo-gallery'); ?></div> 1866 1866 </td> … … 1888 1888 <td class="spider_label"><label for="album_compact_thumb_bg_color"><?php echo __('Thumbnail background color:', 'photo-gallery'); ?> </label></td> 1889 1889 <td> 1890 <input type="text" name="album_compact_thumb_bg_color" id="album_compact_thumb_bg_color" value="<?php echo $row->album_compact_thumb_bg_color; ?>" class="jscolor" />1890 <input type="text" name="album_compact_thumb_bg_color" id="album_compact_thumb_bg_color" value="<?php echo esc_attr($row->album_compact_thumb_bg_color); ?>" class="jscolor" /> 1891 1891 </td> 1892 1892 </tr> … … 1894 1894 <td class="spider_label"><label for="album_compact_thumb_bg_transparency"><?php echo __('Thumbnail background transparency:', 'photo-gallery'); ?> </label></td> 1895 1895 <td> 1896 <input type="text" name="album_compact_thumb_bg_transparency" id="album_compact_thumb_bg_transparency" value="<?php echo $row->album_compact_thumb_bg_transparency; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %1896 <input type="text" name="album_compact_thumb_bg_transparency" id="album_compact_thumb_bg_transparency" value="<?php echo esc_attr($row->album_compact_thumb_bg_transparency); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 1897 1897 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 1898 1898 </td> … … 1901 1901 <td class="spider_label"><label for="album_compact_thumb_transparent"><?php echo __('Thumbnail transparency:', 'photo-gallery'); ?> </label></td> 1902 1902 <td> 1903 <input type="text" name="album_compact_thumb_transparent" id="album_compact_thumb_transparent" value="<?php echo $row->album_compact_thumb_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %1903 <input type="text" name="album_compact_thumb_transparent" id="album_compact_thumb_transparent" value="<?php echo esc_attr($row->album_compact_thumb_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 1904 1904 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 1905 1905 </td> … … 1908 1908 <td class="spider_label"><label for="album_compact_thumbs_bg_color"><?php echo __('Full background color:', 'photo-gallery'); ?> </label></td> 1909 1909 <td> 1910 <input type="text" name="album_compact_thumbs_bg_color" id="album_compact_thumbs_bg_color" value="<?php echo $row->album_compact_thumbs_bg_color; ?>" class="jscolor" />1910 <input type="text" name="album_compact_thumbs_bg_color" id="album_compact_thumbs_bg_color" value="<?php echo esc_attr($row->album_compact_thumbs_bg_color); ?>" class="jscolor" /> 1911 1911 </td> 1912 1912 </tr> … … 1914 1914 <td class="spider_label"><label for="album_compact_thumb_bg_transparent"><?php echo __('Full background transparency:', 'photo-gallery'); ?> </label></td> 1915 1915 <td> 1916 <input type="text" name="album_compact_thumb_bg_transparent" id="album_compact_thumb_bg_transparent" value="<?php echo $row->album_compact_thumb_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %1916 <input type="text" name="album_compact_thumb_bg_transparent" id="album_compact_thumb_bg_transparent" value="<?php echo esc_attr($row->album_compact_thumb_bg_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 1917 1917 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 1918 1918 </td> … … 1925 1925 foreach ($aligns as $key => $align) { 1926 1926 ?> 1927 <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>1927 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_compact_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 1928 1928 <?php 1929 1929 } … … 1954 1954 <td class="spider_label"><label for="album_compact_title_font_size"><?php echo __('Title font size:', 'photo-gallery'); ?> </label></td> 1955 1955 <td> 1956 <input type="text" name="album_compact_title_font_size" id="album_compact_title_font_size" value="<?php echo $row->album_compact_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px1956 <input type="text" name="album_compact_title_font_size" id="album_compact_title_font_size" value="<?php echo esc_attr($row->album_compact_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 1957 1957 </td> 1958 1958 </tr> … … 1960 1960 <td class="spider_label"><label for="album_compact_title_font_color"><?php echo __('Title font color:', 'photo-gallery'); ?> </label></td> 1961 1961 <td> 1962 <input type="text" name="album_compact_title_font_color" id="album_compact_title_font_color" value="<?php echo $row->album_compact_title_font_color; ?>" class="jscolor" />1962 <input type="text" name="album_compact_title_font_color" id="album_compact_title_font_color" value="<?php echo esc_attr($row->album_compact_title_font_color); ?>" class="jscolor" /> 1963 1963 </td> 1964 1964 </tr> … … 1966 1966 <td class="spider_label"><label for="album_compact_title_font_color_hover"><?php echo __('Title font color (Show on hover):', 'photo-gallery'); ?> </label></td> 1967 1967 <td> 1968 <input type="text" name="album_compact_title_font_color_hover" id="album_compact_title_font_color_hover" value="<?php echo $row->album_compact_title_font_color_hover; ?>" class="jscolor" />1968 <input type="text" name="album_compact_title_font_color_hover" id="album_compact_title_font_color_hover" value="<?php echo esc_attr($row->album_compact_title_font_color_hover); ?>" class="jscolor" /> 1969 1969 </td> 1970 1970 </tr> … … 1980 1980 foreach ($font_weights as $key => $font_weight) { 1981 1981 ?> 1982 <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>1982 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_compact_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 1983 1983 <?php 1984 1984 } … … 1990 1990 <td class="spider_label"><label for="album_compact_title_shadow"><?php echo __('Title box shadow:', 'photo-gallery'); ?> </label></td> 1991 1991 <td> 1992 <input type="text" name="album_compact_title_shadow" id="album_compact_title_shadow" value="<?php echo $row->album_compact_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />1992 <input type="text" name="album_compact_title_shadow" id="album_compact_title_shadow" value="<?php echo esc_attr($row->album_compact_title_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 1993 1993 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 1994 1994 </td> … … 1997 1997 <td class="spider_label"><label for="album_compact_title_margin"><?php echo __('Title margin:', 'photo-gallery'); ?> </label></td> 1998 1998 <td> 1999 <input type="text" name="album_compact_title_margin" id="album_compact_title_margin" value="<?php echo $row->album_compact_title_margin; ?>" class="spider_char_input" />1999 <input type="text" name="album_compact_title_margin" id="album_compact_title_margin" value="<?php echo esc_attr($row->album_compact_title_margin); ?>" class="spider_char_input" /> 2000 2000 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2001 2001 </td> … … 2004 2004 <td class="spider_label"><label for="album_compact_back_font_size"><?php echo __('Back Font size:', 'photo-gallery'); ?> </label></td> 2005 2005 <td> 2006 <input type="text" name="album_compact_back_font_size" id="album_compact_back_font_size" value="<?php echo $row->album_compact_back_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2006 <input type="text" name="album_compact_back_font_size" id="album_compact_back_font_size" value="<?php echo esc_attr($row->album_compact_back_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2007 2007 </td> 2008 2008 </tr> … … 2010 2010 <td class="spider_label"><label for="album_compact_back_font_color"><?php echo __('Back Font color:', 'photo-gallery'); ?> </label></td> 2011 2011 <td> 2012 <input type="text" name="album_compact_back_font_color" id="album_compact_back_font_color" value="<?php echo $row->album_compact_back_font_color; ?>" class="jscolor" />2012 <input type="text" name="album_compact_back_font_color" id="album_compact_back_font_color" value="<?php echo esc_attr($row->album_compact_back_font_color); ?>" class="jscolor" /> 2013 2013 </td> 2014 2014 </tr> … … 2024 2024 foreach ($font_weights as $key => $font_weight) { 2025 2025 ?> 2026 <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_back_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>2026 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_compact_back_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 2027 2027 <?php 2028 2028 } … … 2034 2034 <td class="spider_label"><label for="album_compact_back_padding"><?php echo __('Back padding:', 'photo-gallery'); ?> </label></td> 2035 2035 <td> 2036 <input type="text" name="album_compact_back_padding" id="album_compact_back_padding" value="<?php echo $row->album_compact_back_padding; ?>" class="spider_char_input" />2036 <input type="text" name="album_compact_back_padding" id="album_compact_back_padding" value="<?php echo esc_attr($row->album_compact_back_padding); ?>" class="spider_char_input" /> 2037 2037 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2038 2038 </td> … … 2041 2041 <td class="spider_label"><label for="album_compact_gal_title_font_size"><?php echo __('Gallery title/description font size:', 'photo-gallery'); ?> </label></td> 2042 2042 <td> 2043 <input type="text" name="album_compact_gal_title_font_size" id="album_compact_gal_title_font_size" value="<?php echo $row->album_compact_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2043 <input type="text" name="album_compact_gal_title_font_size" id="album_compact_gal_title_font_size" value="<?php echo esc_attr($row->album_compact_gal_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2044 2044 </td> 2045 2045 </tr> … … 2047 2047 <td class="spider_label"><label for="album_compact_gal_title_font_color"><?php echo __('Gallery title/description font color:', 'photo-gallery'); ?> </label></td> 2048 2048 <td> 2049 <input type="text" name="album_compact_gal_title_font_color" id="album_compact_gal_title_font_color" value="<?php echo $row->album_compact_gal_title_font_color; ?>" class="jscolor" />2049 <input type="text" name="album_compact_gal_title_font_color" id="album_compact_gal_title_font_color" value="<?php echo esc_attr($row->album_compact_gal_title_font_color); ?>" class="jscolor" /> 2050 2050 </td> 2051 2051 </tr> … … 2061 2061 foreach ($font_weights as $key => $font_weight) { 2062 2062 ?> 2063 <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>2063 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_compact_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 2064 2064 <?php 2065 2065 } … … 2071 2071 <td class="spider_label"><label for="album_compact_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', 'photo-gallery'); ?> </label></td> 2072 2072 <td> 2073 <input type="text" name="album_compact_gal_title_shadow" id="album_compact_gal_title_shadow" value="<?php echo $row->album_compact_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />2073 <input type="text" name="album_compact_gal_title_shadow" id="album_compact_gal_title_shadow" value="<?php echo esc_attr($row->album_compact_gal_title_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 2074 2074 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2075 2075 </td> … … 2078 2078 <td class="spider_label"><label for="album_compact_gal_title_margin"><?php echo __('Gallery title/description margin:', 'photo-gallery'); ?> </label></td> 2079 2079 <td> 2080 <input type="text" name="album_compact_gal_title_margin" id="album_compact_gal_title_margin" value="<?php echo $row->album_compact_gal_title_margin; ?>" class="spider_char_input" />2080 <input type="text" name="album_compact_gal_title_margin" id="album_compact_gal_title_margin" value="<?php echo esc_attr($row->album_compact_gal_title_margin); ?>" class="spider_char_input" /> 2081 2081 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2082 2082 </td> … … 2089 2089 foreach ($aligns as $key => $align) { 2090 2090 ?> 2091 <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo _e($align, 'photo-gallery'); ?></option>2091 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_compact_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 2092 2092 <?php 2093 2093 } … … 2113 2113 <td class="spider_label"><label for="album_extended_thumb_margin"><?php echo __('Thumbnail margin:', 'photo-gallery'); ?> </label></td> 2114 2114 <td> 2115 <input type="text" name="album_extended_thumb_margin" id="album_extended_thumb_margin" value="<?php echo $row->album_extended_thumb_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2115 <input type="text" name="album_extended_thumb_margin" id="album_extended_thumb_margin" value="<?php echo esc_attr($row->album_extended_thumb_margin); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2116 2116 </td> 2117 2117 </tr> … … 2119 2119 <td class="spider_label"><label for="album_extended_thumb_padding"><?php echo __('Thumbnail padding:', 'photo-gallery'); ?> </label></td> 2120 2120 <td> 2121 <input type="text" name="album_extended_thumb_padding" id="album_extended_thumb_padding" value="<?php echo $row->album_extended_thumb_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2121 <input type="text" name="album_extended_thumb_padding" id="album_extended_thumb_padding" value="<?php echo esc_attr($row->album_extended_thumb_padding); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2122 2122 </td> 2123 2123 </tr> … … 2125 2125 <td class="spider_label"><label for="album_extended_thumb_border_width"><?php echo __('Thumbnail border width:', 'photo-gallery'); ?> </label></td> 2126 2126 <td> 2127 <input type="text" name="album_extended_thumb_border_width" id="album_extended_thumb_border_width" value="<?php echo $row->album_extended_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2127 <input type="text" name="album_extended_thumb_border_width" id="album_extended_thumb_border_width" value="<?php echo esc_attr($row->album_extended_thumb_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2128 2128 </td> 2129 2129 </tr> … … 2135 2135 foreach ($border_styles as $key => $border_style) { 2136 2136 ?> 2137 <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>2137 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_extended_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 2138 2138 <?php 2139 2139 } … … 2145 2145 <td class="spider_label"><label for="album_extended_thumb_border_color"><?php echo __('Thumbnail border color:', 'photo-gallery'); ?> </label></td> 2146 2146 <td> 2147 <input type="text" name="album_extended_thumb_border_color" id="album_extended_thumb_border_color" value="<?php echo $row->album_extended_thumb_border_color; ?>" class="jscolor"/>2147 <input type="text" name="album_extended_thumb_border_color" id="album_extended_thumb_border_color" value="<?php echo esc_attr($row->album_extended_thumb_border_color); ?>" class="jscolor"/> 2148 2148 </td> 2149 2149 </tr> … … 2151 2151 <td class="spider_label"><label for="album_extended_thumb_border_radius"><?php echo __('Thumbnail border radius:', 'photo-gallery'); ?> </label></td> 2152 2152 <td> 2153 <input type="text" name="album_extended_thumb_border_radius" id="album_extended_thumb_border_radius" value="<?php echo $row->album_extended_thumb_border_radius; ?>" class="spider_char_input"/>2153 <input type="text" name="album_extended_thumb_border_radius" id="album_extended_thumb_border_radius" value="<?php echo esc_attr($row->album_extended_thumb_border_radius); ?>" class="spider_char_input"/> 2154 2154 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2155 2155 </td> … … 2158 2158 <td class="spider_label"><label for="album_extended_thumb_box_shadow"><?php echo __('Thumbnail box shadow:', 'photo-gallery'); ?> </label></td> 2159 2159 <td> 2160 <input type="text" name="album_extended_thumb_box_shadow" id="album_extended_thumb_box_shadow" value="<?php echo $row->album_extended_thumb_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />2160 <input type="text" name="album_extended_thumb_box_shadow" id="album_extended_thumb_box_shadow" value="<?php echo esc_attr($row->album_extended_thumb_box_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 2161 2161 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2162 2162 </td> … … 2178 2178 foreach ($aligns as $key => $align) { 2179 2179 ?> 2180 <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>2180 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_extended_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 2181 2181 <?php 2182 2182 } … … 2188 2188 <td class="spider_label"><label for="album_extended_thumb_transparent"><?php echo __('Thumbnail transparency:', 'photo-gallery'); ?> </label></td> 2189 2189 <td> 2190 <input type="text" name="album_extended_thumb_transparent" id="album_extended_thumb_transparent" value="<?php echo $row->album_extended_thumb_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %2190 <input type="text" name="album_extended_thumb_transparent" id="album_extended_thumb_transparent" value="<?php echo esc_attr($row->album_extended_thumb_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 2191 2191 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 2192 2192 </td> … … 2199 2199 foreach ($thumbnail_hover_effects as $key => $hover_effect) { 2200 2200 ?> 2201 <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo__($hover_effect, 'photo-gallery'); ?></option>2201 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_extended_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($hover_effect, 'photo-gallery'); ?></option> 2202 2202 <?php 2203 2203 } … … 2209 2209 <td class="spider_label"><label for="album_extended_thumb_hover_effect_value"><?php echo __('Hover effect value:', 'photo-gallery'); ?> </label></td> 2210 2210 <td> 2211 <input type="text" name="album_extended_thumb_hover_effect_value" id="album_extended_thumb_hover_effect_value" value="<?php echo $row->album_extended_thumb_hover_effect_value; ?>" class="spider_char_input"/>2211 <input type="text" name="album_extended_thumb_hover_effect_value" id="album_extended_thumb_hover_effect_value" value="<?php echo esc_attr($row->album_extended_thumb_hover_effect_value); ?>" class="spider_char_input"/> 2212 2212 <div class="spider_description"><?php echo __('E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg.', 'photo-gallery'); ?></div> 2213 2213 </td> … … 2216 2216 <td class="spider_label"><label for="album_extended_thumb_bg_color"><?php echo __('Thumbnail background color:', 'photo-gallery'); ?> </label></td> 2217 2217 <td> 2218 <input type="text" name="album_extended_thumb_bg_color" id="album_extended_thumb_bg_color" value="<?php echo $row->album_extended_thumb_bg_color; ?>" class="jscolor"/>2218 <input type="text" name="album_extended_thumb_bg_color" id="album_extended_thumb_bg_color" value="<?php echo esc_attr($row->album_extended_thumb_bg_color); ?>" class="jscolor"/> 2219 2219 </td> 2220 2220 </tr> … … 2222 2222 <td class="spider_label"><label for="album_extended_thumbs_bg_color"><?php echo __('Thumbnails background color:', 'photo-gallery'); ?> </label></td> 2223 2223 <td> 2224 <input type="text" name="album_extended_thumbs_bg_color" id="album_extended_thumbs_bg_color" value="<?php echo $row->album_extended_thumbs_bg_color; ?>" class="jscolor"/>2224 <input type="text" name="album_extended_thumbs_bg_color" id="album_extended_thumbs_bg_color" value="<?php echo esc_attr($row->album_extended_thumbs_bg_color); ?>" class="jscolor"/> 2225 2225 </td> 2226 2226 </tr> … … 2228 2228 <td class="spider_label"><label for="album_extended_thumb_bg_transparent"><?php echo __('Thumbnail background transparency:', 'photo-gallery'); ?> </label></td> 2229 2229 <td> 2230 <input type="text" name="album_extended_thumb_bg_transparent" id="album_extended_thumb_bg_transparent" value="<?php echo $row->album_extended_thumb_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %2230 <input type="text" name="album_extended_thumb_bg_transparent" id="album_extended_thumb_bg_transparent" value="<?php echo esc_attr($row->album_extended_thumb_bg_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 2231 2231 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 2232 2232 </td> … … 2246 2246 <td class="spider_label"><label for="album_extended_thumb_div_padding"><?php echo __('Thumbnail div padding:', 'photo-gallery'); ?> </label></td> 2247 2247 <td> 2248 <input type="text" name="album_extended_thumb_div_padding" id="album_extended_thumb_div_padding" value="<?php echo $row->album_extended_thumb_div_padding; ?>" class="spider_char_input"/>2248 <input type="text" name="album_extended_thumb_div_padding" id="album_extended_thumb_div_padding" value="<?php echo esc_attr($row->album_extended_thumb_div_padding); ?>" class="spider_char_input"/> 2249 2249 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2250 2250 </td> … … 2253 2253 <td class="spider_label"><label for="album_extended_thumb_div_bg_color"><?php echo __('Thumbnail div background color:', 'photo-gallery'); ?> </label></td> 2254 2254 <td> 2255 <input type="text" name="album_extended_thumb_div_bg_color" id="album_extended_thumb_div_bg_color" value="<?php echo $row->album_extended_thumb_div_bg_color; ?>" class="jscolor"/>2255 <input type="text" name="album_extended_thumb_div_bg_color" id="album_extended_thumb_div_bg_color" value="<?php echo esc_attr($row->album_extended_thumb_div_bg_color); ?>" class="jscolor"/> 2256 2256 </td> 2257 2257 </tr> … … 2260 2260 </td> 2261 2261 <td> 2262 <input type="text" name="album_extended_thumb_div_border_width" id="album_extended_thumb_div_border_width" value="<?php echo $row->album_extended_thumb_div_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2262 <input type="text" name="album_extended_thumb_div_border_width" id="album_extended_thumb_div_border_width" value="<?php echo esc_attr($row->album_extended_thumb_div_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2263 2263 </td> 2264 2264 </tr> … … 2270 2270 foreach ($border_styles as $key => $border_style) { 2271 2271 ?> 2272 <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_thumb_div_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>2272 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_extended_thumb_div_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 2273 2273 <?php 2274 2274 } … … 2280 2280 <td class="spider_label"><label for="album_extended_thumb_div_border_color"><?php echo __('Thumbnail div border color:', 'photo-gallery'); ?> </label></td> 2281 2281 <td> 2282 <input type="text" name="album_extended_thumb_div_border_color" id="album_extended_thumb_div_border_color" value="<?php echo $row->album_extended_thumb_div_border_color; ?>" class="jscolor"/>2282 <input type="text" name="album_extended_thumb_div_border_color" id="album_extended_thumb_div_border_color" value="<?php echo esc_attr($row->album_extended_thumb_div_border_color); ?>" class="jscolor"/> 2283 2283 </td> 2284 2284 </tr> … … 2286 2286 <td class="spider_label"><label for="album_extended_thumb_div_border_radius"><?php echo __('Thumbnail div border radius:', 'photo-gallery'); ?> </label></td> 2287 2287 <td> 2288 <input type="text" name="album_extended_thumb_div_border_radius" id="album_extended_thumb_div_border_radius" value="<?php echo $row->album_extended_thumb_div_border_radius; ?>" class="spider_char_input"/>2288 <input type="text" name="album_extended_thumb_div_border_radius" id="album_extended_thumb_div_border_radius" value="<?php echo esc_attr($row->album_extended_thumb_div_border_radius); ?>" class="spider_char_input"/> 2289 2289 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2290 2290 </td> … … 2293 2293 <td class="spider_label"><label for="album_extended_div_margin"><?php echo __('Margin:', 'photo-gallery'); ?> </label></td> 2294 2294 <td> 2295 <input type="text" name="album_extended_div_margin" id="album_extended_div_margin" value="<?php echo $row->album_extended_div_margin; ?>" class="spider_char_input"/>2295 <input type="text" name="album_extended_div_margin" id="album_extended_div_margin" value="<?php echo esc_attr($row->album_extended_div_margin); ?>" class="spider_char_input"/> 2296 2296 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2297 2297 </td> … … 2300 2300 <td class="spider_label"><label for="album_extended_div_padding"><?php echo __('Padding:', 'photo-gallery'); ?> </label></td> 2301 2301 <td> 2302 <input type="text" name="album_extended_div_padding" id="album_extended_div_padding" value="<?php echo $row->album_extended_div_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2302 <input type="text" name="album_extended_div_padding" id="album_extended_div_padding" value="<?php echo esc_attr($row->album_extended_div_padding); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2303 2303 </td> 2304 2304 </tr> … … 2306 2306 <td class="spider_label"><label for="album_extended_div_bg_color"><?php echo __('Background color:', 'photo-gallery'); ?> </label></td> 2307 2307 <td> 2308 <input type="text" name="album_extended_div_bg_color" id="album_extended_div_bg_color" value="<?php echo $row->album_extended_div_bg_color; ?>" class="jscolor"/>2308 <input type="text" name="album_extended_div_bg_color" id="album_extended_div_bg_color" value="<?php echo esc_attr($row->album_extended_div_bg_color); ?>" class="jscolor"/> 2309 2309 </td> 2310 2310 </tr> … … 2312 2312 <td class="spider_label"><label for="album_extended_div_bg_transparent"><?php echo __('Background transparency:', 'photo-gallery'); ?> </label></td> 2313 2313 <td> 2314 <input type="text" name="album_extended_div_bg_transparent" id="album_extended_div_bg_transparent" value="<?php echo $row->album_extended_div_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %2314 <input type="text" name="album_extended_div_bg_transparent" id="album_extended_div_bg_transparent" value="<?php echo esc_attr($row->album_extended_div_bg_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 2315 2315 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 2316 2316 </td> … … 2319 2319 <td class="spider_label"><label for="album_extended_div_border_radius"><?php echo __('Border radius:', 'photo-gallery'); ?> </label></td> 2320 2320 <td> 2321 <input type="text" name="album_extended_div_border_radius" id="album_extended_div_border_radius" value="<?php echo $row->album_extended_div_border_radius; ?>" class="spider_char_input"/>2321 <input type="text" name="album_extended_div_border_radius" id="album_extended_div_border_radius" value="<?php echo esc_attr($row->album_extended_div_border_radius); ?>" class="spider_char_input"/> 2322 2322 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2323 2323 </td> … … 2326 2326 <td class="spider_label"><label for="album_extended_div_separator_width"><?php echo __('Separator width:', 'photo-gallery'); ?> </label></td> 2327 2327 <td> 2328 <input type="text" name="album_extended_div_separator_width" id="album_extended_div_separator_width" value="<?php echo $row->album_extended_div_separator_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2328 <input type="text" name="album_extended_div_separator_width" id="album_extended_div_separator_width" value="<?php echo esc_attr($row->album_extended_div_separator_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2329 2329 </td> 2330 2330 </tr> … … 2336 2336 foreach ($border_styles as $key => $border_style) { 2337 2337 ?> 2338 <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_div_separator_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>2338 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_extended_div_separator_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 2339 2339 <?php 2340 2340 } … … 2346 2346 <td class="spider_label"><label for="album_extended_div_separator_color"><?php echo __('Separator color:', 'photo-gallery'); ?> </label></td> 2347 2347 <td> 2348 <input type="text" name="album_extended_div_separator_color" id="album_extended_div_separator_color" value="<?php echo $row->album_extended_div_separator_color; ?>" class="jscolor"/>2348 <input type="text" name="album_extended_div_separator_color" id="album_extended_div_separator_color" value="<?php echo esc_attr($row->album_extended_div_separator_color); ?>" class="jscolor"/> 2349 2349 </td> 2350 2350 </tr> … … 2352 2352 <td class="spider_label"><label for="album_extended_back_padding"><?php echo __('Back padding:', 'photo-gallery'); ?> </label></td> 2353 2353 <td> 2354 <input type="text" name="album_extended_back_padding" id="album_extended_back_padding" value="<?php echo $row->album_extended_back_padding; ?>" class="spider_char_input" />2354 <input type="text" name="album_extended_back_padding" id="album_extended_back_padding" value="<?php echo esc_attr($row->album_extended_back_padding); ?>" class="spider_char_input" /> 2355 2355 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2356 2356 </td> … … 2359 2359 <td class="spider_label"><label for="album_extended_back_font_size"><?php echo __('Back font size:', 'photo-gallery'); ?> </label></td> 2360 2360 <td> 2361 <input type="text" name="album_extended_back_font_size" id="album_extended_back_font_size" value="<?php echo $row->album_extended_back_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2361 <input type="text" name="album_extended_back_font_size" id="album_extended_back_font_size" value="<?php echo esc_attr($row->album_extended_back_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2362 2362 </td> 2363 2363 </tr> … … 2365 2365 <td class="spider_label"><label for="album_extended_back_font_color"><?php echo __('Back font color:', 'photo-gallery'); ?> </label></td> 2366 2366 <td> 2367 <input type="text" name="album_extended_back_font_color" id="album_extended_back_font_color" value="<?php echo $row->album_extended_back_font_color; ?>" class="jscolor"/>2367 <input type="text" name="album_extended_back_font_color" id="album_extended_back_font_color" value="<?php echo esc_attr($row->album_extended_back_font_color); ?>" class="jscolor"/> 2368 2368 </td> 2369 2369 </tr> … … 2379 2379 foreach ($font_weights as $key => $font_weight) { 2380 2380 ?> 2381 <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_back_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>2381 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_extended_back_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 2382 2382 <?php 2383 2383 } … … 2403 2403 foreach ( array('top', 'center', 'bottom') as $val ) { 2404 2404 ?> 2405 <option value="<?php echo $val; ?>" <?php echo (($row->album_extended_title_desc_alignment == $val) ? 'selected="selected"' : ''); ?>><?php echo ucfirst(__($val, 'photo-gallery') ); ?></option>2405 <option value="<?php echo esc_attr($val); ?>" <?php echo (($row->album_extended_title_desc_alignment == $val) ? 'selected="selected"' : ''); ?>><?php echo ucfirst( esc_html__($val, 'photo-gallery') ); ?></option> 2406 2406 <?php 2407 2407 } … … 2413 2413 <td class="spider_label"><label for="album_extended_text_div_padding"><?php echo __('Text div padding:', 'photo-gallery'); ?> </label></td> 2414 2414 <td> 2415 <input type="text" name="album_extended_text_div_padding" id="album_extended_text_div_padding" value="<?php echo $row->album_extended_text_div_padding; ?>" class="spider_char_input" />2415 <input type="text" name="album_extended_text_div_padding" id="album_extended_text_div_padding" value="<?php echo esc_attr($row->album_extended_text_div_padding); ?>" class="spider_char_input" /> 2416 2416 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2417 2417 </td> … … 2420 2420 <td class="spider_label"><label for="album_extended_text_div_border_width"><?php echo __('Text div border width:', 'photo-gallery'); ?> </label></td> 2421 2421 <td> 2422 <input type="text" name="album_extended_text_div_border_width" id="album_extended_text_div_border_width" value="<?php echo $row->album_extended_text_div_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2422 <input type="text" name="album_extended_text_div_border_width" id="album_extended_text_div_border_width" value="<?php echo esc_attr($row->album_extended_text_div_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2423 2423 </td> 2424 2424 </tr> … … 2430 2430 foreach ($border_styles as $key => $border_style) { 2431 2431 ?> 2432 <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_text_div_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>2432 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_extended_text_div_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 2433 2433 <?php 2434 2434 } … … 2440 2440 <td class="spider_label"><label for="album_extended_text_div_border_color"><?php echo __('Text border color:', 'photo-gallery'); ?> </label></td> 2441 2441 <td> 2442 <input type="text" name="album_extended_text_div_border_color" id="album_extended_text_div_border_color" value="<?php echo $row->album_extended_text_div_border_color; ?>" class="jscolor"/>2442 <input type="text" name="album_extended_text_div_border_color" id="album_extended_text_div_border_color" value="<?php echo esc_attr($row->album_extended_text_div_border_color); ?>" class="jscolor"/> 2443 2443 </td> 2444 2444 </tr> … … 2446 2446 <td class="spider_label"><label for="album_extended_text_div_border_radius"><?php echo __('Text div border radius:', 'photo-gallery'); ?> </label></td> 2447 2447 <td> 2448 <input type="text" name="album_extended_text_div_border_radius" id="album_extended_text_div_border_radius" value="<?php echo $row->album_extended_text_div_border_radius; ?>" class="spider_char_input"/>2448 <input type="text" name="album_extended_text_div_border_radius" id="album_extended_text_div_border_radius" value="<?php echo esc_attr($row->album_extended_text_div_border_radius); ?>" class="spider_char_input"/> 2449 2449 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2450 2450 </td> … … 2453 2453 <td class="spider_label"><label for="album_extended_text_div_bg_color"><?php echo __('Text background color:', 'photo-gallery'); ?> </label></td> 2454 2454 <td> 2455 <input type="text" name="album_extended_text_div_bg_color" id="album_extended_text_div_bg_color" value="<?php echo $row->album_extended_text_div_bg_color; ?>" class="jscolor"/>2455 <input type="text" name="album_extended_text_div_bg_color" id="album_extended_text_div_bg_color" value="<?php echo esc_attr($row->album_extended_text_div_bg_color); ?>" class="jscolor"/> 2456 2456 </td> 2457 2457 </tr> … … 2459 2459 <td class="spider_label"><label for="album_extended_title_margin_bottom"><?php echo __('Title margin:', 'photo-gallery'); ?> </label></td> 2460 2460 <td> 2461 <input type="text" name="album_extended_title_margin_bottom" id="album_extended_title_margin_bottom" value="<?php echo $row->album_extended_title_margin_bottom; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2461 <input type="text" name="album_extended_title_margin_bottom" id="album_extended_title_margin_bottom" value="<?php echo esc_attr($row->album_extended_title_margin_bottom); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2462 2462 </td> 2463 2463 </tr> … … 2465 2465 <td class="spider_label"><label for="album_extended_title_padding"><?php echo __('Title padding:', 'photo-gallery'); ?> </label></td> 2466 2466 <td> 2467 <input type="text" name="album_extended_title_padding" id="album_extended_title_padding" value="<?php echo $row->album_extended_title_padding; ?>" class="spider_char_input"/>2467 <input type="text" name="album_extended_title_padding" id="album_extended_title_padding" value="<?php echo esc_attr($row->album_extended_title_padding); ?>" class="spider_char_input"/> 2468 2468 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2469 2469 </td> … … 2472 2472 <td class="spider_label"><label for="album_extended_title_span_border_width"><?php echo __('Title border width:', 'photo-gallery'); ?> </label></td> 2473 2473 <td> 2474 <input type="text" name="album_extended_title_span_border_width" id="album_extended_title_span_border_width" value="<?php echo $row->album_extended_title_span_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2474 <input type="text" name="album_extended_title_span_border_width" id="album_extended_title_span_border_width" value="<?php echo esc_attr($row->album_extended_title_span_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2475 2475 </td> 2476 2476 </tr> … … 2482 2482 foreach ($border_styles as $key => $border_style) { 2483 2483 ?> 2484 <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_title_span_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>2484 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_extended_title_span_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 2485 2485 <?php 2486 2486 } … … 2492 2492 <td class="spider_label"><label for="album_extended_title_span_border_color"><?php echo __('Title border color:', 'photo-gallery'); ?> </label></td> 2493 2493 <td> 2494 <input type="text" name="album_extended_title_span_border_color" id="album_extended_title_span_border_color" value="<?php echo $row->album_extended_title_span_border_color; ?>" class="jscolor"/>2494 <input type="text" name="album_extended_title_span_border_color" id="album_extended_title_span_border_color" value="<?php echo esc_attr($row->album_extended_title_span_border_color); ?>" class="jscolor"/> 2495 2495 </td> 2496 2496 </tr> … … 2498 2498 <td class="spider_label"><label for="album_extended_title_font_size"><?php echo __('Title font size:', 'photo-gallery'); ?> </label></td> 2499 2499 <td> 2500 <input type="text" name="album_extended_title_font_size" id="album_extended_title_font_size" value="<?php echo $row->album_extended_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2500 <input type="text" name="album_extended_title_font_size" id="album_extended_title_font_size" value="<?php echo esc_attr($row->album_extended_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2501 2501 </td> 2502 2502 </tr> … … 2504 2504 <td class="spider_label"><label for="album_extended_title_font_color"><?php echo __('Title font color:', 'photo-gallery'); ?> </label></td> 2505 2505 <td> 2506 <input type="text" name="album_extended_title_font_color" id="album_extended_title_font_color" value="<?php echo $row->album_extended_title_font_color; ?>" class="jscolor"/>2506 <input type="text" name="album_extended_title_font_color" id="album_extended_title_font_color" value="<?php echo esc_attr($row->album_extended_title_font_color); ?>" class="jscolor"/> 2507 2507 </td> 2508 2508 </tr> … … 2518 2518 foreach ($font_weights as $key => $font_weight) { 2519 2519 ?> 2520 <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>2520 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_extended_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 2521 2521 <?php 2522 2522 } … … 2528 2528 <td class="spider_label"><label for="album_extended_desc_padding"><?php echo __('Description padding:', 'photo-gallery'); ?> </label></td> 2529 2529 <td> 2530 <input type="text" name="album_extended_desc_padding" id="album_extended_desc_padding" value="<?php echo $row->album_extended_desc_padding; ?>" class="spider_char_input"/>2530 <input type="text" name="album_extended_desc_padding" id="album_extended_desc_padding" value="<?php echo esc_attr($row->album_extended_desc_padding); ?>" class="spider_char_input"/> 2531 2531 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2532 2532 </td> … … 2535 2535 <td class="spider_label"><label for="album_extended_desc_span_border_width"><?php echo __('Description border width:', 'photo-gallery'); ?> </label></td> 2536 2536 <td> 2537 <input type="text" name="album_extended_desc_span_border_width" id="album_extended_desc_span_border_width" value="<?php echo $row->album_extended_desc_span_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2537 <input type="text" name="album_extended_desc_span_border_width" id="album_extended_desc_span_border_width" value="<?php echo esc_attr($row->album_extended_desc_span_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2538 2538 </td> 2539 2539 </tr> … … 2545 2545 foreach ($border_styles as $key => $border_style) { 2546 2546 ?> 2547 <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_desc_span_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>2547 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_extended_desc_span_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 2548 2548 <?php 2549 2549 } … … 2555 2555 <td class="spider_label"><label for="album_extended_desc_span_border_color"><?php echo __('Description border color:', 'photo-gallery'); ?> </label></td> 2556 2556 <td> 2557 <input type="text" name="album_extended_desc_span_border_color" id="album_extended_desc_span_border_color" value="<?php echo $row->album_extended_desc_span_border_color; ?>" class="jscolor"/>2557 <input type="text" name="album_extended_desc_span_border_color" id="album_extended_desc_span_border_color" value="<?php echo esc_attr($row->album_extended_desc_span_border_color); ?>" class="jscolor"/> 2558 2558 </td> 2559 2559 </tr> … … 2561 2561 <td class="spider_label"><label for="album_extended_desc_font_size"><?php echo __('Description font size:', 'photo-gallery'); ?> </label></td> 2562 2562 <td> 2563 <input type="text" name="album_extended_desc_font_size" id="album_extended_desc_font_size" value="<?php echo $row->album_extended_desc_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2563 <input type="text" name="album_extended_desc_font_size" id="album_extended_desc_font_size" value="<?php echo esc_attr($row->album_extended_desc_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2564 2564 </td> 2565 2565 </tr> … … 2567 2567 <td class="spider_label"><label for="album_extended_desc_font_color"><?php echo __('Description font color:', 'photo-gallery'); ?> </label></td> 2568 2568 <td> 2569 <input type="text" name="album_extended_desc_font_color" id="album_extended_desc_font_color" value="<?php echo $row->album_extended_desc_font_color; ?>" class="jscolor"/>2569 <input type="text" name="album_extended_desc_font_color" id="album_extended_desc_font_color" value="<?php echo esc_attr($row->album_extended_desc_font_color); ?>" class="jscolor"/> 2570 2570 </td> 2571 2571 </tr> … … 2581 2581 foreach ($font_weights as $key => $font_weight) { 2582 2582 ?> 2583 <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_desc_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>2583 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_extended_desc_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 2584 2584 <?php 2585 2585 } … … 2591 2591 <td class="spider_label"><label for="album_extended_desc_more_size"><?php echo __('Description more size:', 'photo-gallery'); ?> </label></td> 2592 2592 <td> 2593 <input type="text" name="album_extended_desc_more_size" id="album_extended_desc_more_size" value="<?php echo $row->album_extended_desc_more_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2593 <input type="text" name="album_extended_desc_more_size" id="album_extended_desc_more_size" value="<?php echo esc_attr($row->album_extended_desc_more_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2594 2594 </td> 2595 2595 </tr> … … 2597 2597 <td class="spider_label"><label for="album_extended_desc_more_color"><?php echo __('Description more color:', 'photo-gallery'); ?> </label></td> 2598 2598 <td> 2599 <input type="text" name="album_extended_desc_more_color" id="album_extended_desc_more_color" value="<?php echo $row->album_extended_desc_more_color; ?>" class="jscolor"/>2599 <input type="text" name="album_extended_desc_more_color" id="album_extended_desc_more_color" value="<?php echo esc_attr($row->album_extended_desc_more_color); ?>" class="jscolor"/> 2600 2600 </td> 2601 2601 </tr> … … 2603 2603 <td class="spider_label"><label for="album_extended_gal_title_font_size"><?php echo __('Gallery title/description font size:', 'photo-gallery'); ?> </label></td> 2604 2604 <td> 2605 <input type="text" name="album_extended_gal_title_font_size" id="album_extended_gal_title_font_size" value="<?php echo $row->album_extended_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2605 <input type="text" name="album_extended_gal_title_font_size" id="album_extended_gal_title_font_size" value="<?php echo esc_attr($row->album_extended_gal_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2606 2606 </td> 2607 2607 </tr> … … 2609 2609 <td class="spider_label"><label for="album_extended_gal_title_font_color"><?php echo __('Gallery title/description font color:', 'photo-gallery'); ?> </label></td> 2610 2610 <td> 2611 <input type="text" name="album_extended_gal_title_font_color" id="album_extended_gal_title_font_color" value="<?php echo $row->album_extended_gal_title_font_color; ?>" class="jscolor" />2611 <input type="text" name="album_extended_gal_title_font_color" id="album_extended_gal_title_font_color" value="<?php echo esc_attr($row->album_extended_gal_title_font_color); ?>" class="jscolor" /> 2612 2612 </td> 2613 2613 </tr> … … 2623 2623 foreach ($font_weights as $key => $font_weight) { 2624 2624 ?> 2625 <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>2625 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_extended_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 2626 2626 <?php 2627 2627 } … … 2633 2633 <td class="spider_label"><label for="album_extended_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', 'photo-gallery'); ?> </label></td> 2634 2634 <td> 2635 <input type="text" name="album_extended_gal_title_shadow" id="album_extended_gal_title_shadow" value="<?php echo $row->album_extended_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />2635 <input type="text" name="album_extended_gal_title_shadow" id="album_extended_gal_title_shadow" value="<?php echo esc_attr($row->album_extended_gal_title_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 2636 2636 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2637 2637 </td> … … 2640 2640 <td class="spider_label"><label for="album_extended_gal_title_margin"><?php echo __('Gallery title/description margin:', 'photo-gallery'); ?> </label></td> 2641 2641 <td> 2642 <input type="text" name="album_extended_gal_title_margin" id="album_extended_gal_title_margin" value="<?php echo $row->album_extended_gal_title_margin; ?>" class="spider_char_input" />2642 <input type="text" name="album_extended_gal_title_margin" id="album_extended_gal_title_margin" value="<?php echo esc_attr($row->album_extended_gal_title_margin); ?>" class="spider_char_input" /> 2643 2643 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2644 2644 </td> … … 2651 2651 foreach ($aligns as $key => $align) { 2652 2652 ?> 2653 <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo _e($align, 'photo-gallery'); ?></option>2653 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_extended_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 2654 2654 <?php 2655 2655 } … … 2676 2676 <td class="spider_label"><label for="album_masonry_thumb_padding"><?php echo __('Distance between pictures:', 'photo-gallery'); ?> </label></td> 2677 2677 <td> 2678 <input type="text" name="album_masonry_thumb_padding" id="album_masonry_thumb_padding" value="<?php echo $row->album_masonry_thumb_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2678 <input type="text" name="album_masonry_thumb_padding" id="album_masonry_thumb_padding" value="<?php echo esc_attr($row->album_masonry_thumb_padding); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2679 2679 </td> 2680 2680 </tr> … … 2692 2692 <td class="spider_label"><label for="album_masonry_thumb_border_width"><?php echo __('Border width:', 'photo-gallery'); ?> </label></td> 2693 2693 <td> 2694 <input type="text" name="album_masonry_thumb_border_width" id="album_masonry_thumb_border_width" value="<?php echo $row->album_masonry_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2694 <input type="text" name="album_masonry_thumb_border_width" id="album_masonry_thumb_border_width" value="<?php echo esc_attr($row->album_masonry_thumb_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2695 2695 </td> 2696 2696 </tr> … … 2702 2702 foreach ($border_styles as $key => $border_style) { 2703 2703 ?> 2704 <option value="<?php echo $key; ?>" <?php echo (($row->album_masonry_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>2704 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_masonry_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 2705 2705 <?php 2706 2706 } … … 2712 2712 <td class="spider_label"><label for="album_masonry_thumb_border_color"><?php echo __('Border color:', 'photo-gallery'); ?> </label></td> 2713 2713 <td> 2714 <input type="text" name="album_masonry_thumb_border_color" id="album_masonry_thumb_border_color" value="<?php echo $row->album_masonry_thumb_border_color; ?>" class="jscolor" />2714 <input type="text" name="album_masonry_thumb_border_color" id="album_masonry_thumb_border_color" value="<?php echo esc_attr($row->album_masonry_thumb_border_color); ?>" class="jscolor" /> 2715 2715 </td> 2716 2716 </tr> … … 2718 2718 <td class="spider_label"><label for="album_masonry_thumb_border_radius"><?php echo __('Border radius:', 'photo-gallery'); ?> </label></td> 2719 2719 <td> 2720 <input type="text" name="album_masonry_thumb_border_radius" id="album_masonry_thumb_border_radius" value="<?php echo $row->album_masonry_thumb_border_radius; ?>" class="spider_char_input" />2720 <input type="text" name="album_masonry_thumb_border_radius" id="album_masonry_thumb_border_radius" value="<?php echo esc_attr($row->album_masonry_thumb_border_radius); ?>" class="spider_char_input" /> 2721 2721 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2722 2722 </td> … … 2729 2729 foreach ($thumbnail_hover_effects as $key => $hover_effect) { 2730 2730 ?> 2731 <option value="<?php echo $key; ?>" <?php echo (($row->album_masonry_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo__($hover_effect, 'photo-gallery'); ?></option>2731 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_masonry_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($hover_effect, 'photo-gallery'); ?></option> 2732 2732 <?php 2733 2733 } … … 2739 2739 <td class="spider_label"><label for="album_masonry_thumb_hover_effect_value"><?php echo __('Hover effect value:', 'photo-gallery'); ?> </label></td> 2740 2740 <td> 2741 <input type="text" name="album_masonry_thumb_hover_effect_value" id="album_masonry_thumb_hover_effect_value" value="<?php echo $row->album_masonry_thumb_hover_effect_value; ?>" class="spider_char_input" />2741 <input type="text" name="album_masonry_thumb_hover_effect_value" id="album_masonry_thumb_hover_effect_value" value="<?php echo esc_attr($row->album_masonry_thumb_hover_effect_value); ?>" class="spider_char_input" /> 2742 2742 <div class="spider_description"><?php echo __('E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg.', 'photo-gallery'); ?></div> 2743 2743 </td> … … 2767 2767 </td> 2768 2768 <td> 2769 <input type="text" name="album_masonry_thumb_bg_color" id="album_masonry_thumb_bg_color" value="<?php echo $row->album_masonry_thumb_bg_color; ?>" class="jscolor" />2769 <input type="text" name="album_masonry_thumb_bg_color" id="album_masonry_thumb_bg_color" value="<?php echo esc_attr($row->album_masonry_thumb_bg_color); ?>" class="jscolor" /> 2770 2770 </td> 2771 2771 </tr> … … 2773 2773 <td class="spider_label"><label for="album_masonry_thumb_transparent"><?php echo __('Thumbnail transparency:', 'photo-gallery'); ?> </label></td> 2774 2774 <td> 2775 <input type="text" name="album_masonry_thumb_transparent" id="album_masonry_thumb_transparent" value="<?php echo $row->album_masonry_thumb_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %2775 <input type="text" name="album_masonry_thumb_transparent" id="album_masonry_thumb_transparent" value="<?php echo esc_attr($row->album_masonry_thumb_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 2776 2776 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 2777 2777 </td> … … 2780 2780 <td class="spider_label"><label for="album_masonry_thumbs_bg_color"><?php echo __('Full background color:', 'photo-gallery'); ?> </label></td> 2781 2781 <td> 2782 <input type="text" name="album_masonry_thumbs_bg_color" id="album_masonry_thumbs_bg_color" value="<?php echo $row->album_masonry_thumbs_bg_color; ?>" class="jscolor" />2782 <input type="text" name="album_masonry_thumbs_bg_color" id="album_masonry_thumbs_bg_color" value="<?php echo esc_attr($row->album_masonry_thumbs_bg_color); ?>" class="jscolor" /> 2783 2783 </td> 2784 2784 </tr> … … 2786 2786 <td class="spider_label"><label for="album_masonry_thumb_bg_transparent"><?php echo __('Full background transparency:', 'photo-gallery'); ?> </label></td> 2787 2787 <td> 2788 <input type="text" name="album_masonry_thumb_bg_transparent" id="album_masonry_thumb_bg_transparent" value="<?php echo $row->album_masonry_thumb_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %2788 <input type="text" name="album_masonry_thumb_bg_transparent" id="album_masonry_thumb_bg_transparent" value="<?php echo esc_attr($row->album_masonry_thumb_bg_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 2789 2789 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 2790 2790 </td> … … 2797 2797 foreach ($aligns as $key => $align) { 2798 2798 ?> 2799 <option value="<?php echo $key; ?>" <?php echo (($row->album_masonry_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>2799 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_masonry_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 2800 2800 <?php 2801 2801 } … … 2817 2817 <td class="spider_label"><label for="album_masonry_title_font_size"><?php echo __('Title font size:', 'photo-gallery'); ?> </label></td> 2818 2818 <td> 2819 <input type="text" name="album_masonry_title_font_size" id="album_masonry_title_font_size" value="<?php echo $row->album_masonry_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2819 <input type="text" name="album_masonry_title_font_size" id="album_masonry_title_font_size" value="<?php echo esc_attr($row->album_masonry_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2820 2820 </td> 2821 2821 </tr> … … 2823 2823 <td class="spider_label"><label for="album_masonry_title_font_color"><?php echo __('Title font color:', 'photo-gallery'); ?> </label></td> 2824 2824 <td> 2825 <input type="text" name="album_masonry_title_font_color" id="album_masonry_title_font_color" value="<?php echo $row->album_masonry_title_font_color; ?>" class="jscolor" />2825 <input type="text" name="album_masonry_title_font_color" id="album_masonry_title_font_color" value="<?php echo esc_attr($row->album_masonry_title_font_color); ?>" class="jscolor" /> 2826 2826 </td> 2827 2827 </tr> … … 2829 2829 <td class="spider_label"><label for="album_masonry_thumb_title_font_color_hover"><?php echo __('Title font color (Show on hover):', 'photo-gallery'); ?> </label></td> 2830 2830 <td> 2831 <input type="text" name="album_masonry_thumb_title_font_color_hover" id="album_masonry_thumb_title_font_color_hover" value="<?php echo $row->album_masonry_thumb_title_font_color_hover; ?>" class="jscolor" />2831 <input type="text" name="album_masonry_thumb_title_font_color_hover" id="album_masonry_thumb_title_font_color_hover" value="<?php echo esc_attr($row->album_masonry_thumb_title_font_color_hover); ?>" class="jscolor" /> 2832 2832 </td> 2833 2833 </tr> … … 2843 2843 foreach ($font_weights as $key => $font_weight) { 2844 2844 ?> 2845 <option value="<?php echo $key; ?>" <?php echo (($row->album_masonry_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>2845 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_masonry_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 2846 2846 <?php 2847 2847 } … … 2853 2853 <td class="spider_label"><label for="album_masonry_title_shadow"><?php echo __('Title box shadow:', 'photo-gallery'); ?> </label></td> 2854 2854 <td> 2855 <input type="text" name="album_masonry_title_shadow" id="album_masonry_title_shadow" value="<?php echo $row->album_masonry_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />2855 <input type="text" name="album_masonry_title_shadow" id="album_masonry_title_shadow" value="<?php echo esc_attr($row->album_masonry_title_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 2856 2856 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2857 2857 </td> … … 2860 2860 <td class="spider_label"><label for="album_masonry_back_font_size"><?php echo __('Back Font size:', 'photo-gallery'); ?> </label></td> 2861 2861 <td> 2862 <input type="text" name="album_masonry_back_font_size" id="album_masonry_back_font_size" value="<?php echo $row->album_masonry_back_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2862 <input type="text" name="album_masonry_back_font_size" id="album_masonry_back_font_size" value="<?php echo esc_attr($row->album_masonry_back_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2863 2863 </td> 2864 2864 </tr> … … 2866 2866 <td class="spider_label"><label for="album_masonry_back_font_color"><?php echo __('Back Font color:', 'photo-gallery'); ?> </label></td> 2867 2867 <td> 2868 <input type="text" name="album_masonry_back_font_color" id="album_masonry_back_font_color" value="<?php echo $row->album_masonry_back_font_color; ?>" class="jscolor" />2868 <input type="text" name="album_masonry_back_font_color" id="album_masonry_back_font_color" value="<?php echo esc_attr($row->album_masonry_back_font_color); ?>" class="jscolor" /> 2869 2869 </td> 2870 2870 </tr> … … 2880 2880 foreach ($font_weights as $key => $font_weight) { 2881 2881 ?> 2882 <option value="<?php echo $key; ?>" <?php echo (($row->album_masonry_back_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>2882 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_masonry_back_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 2883 2883 <?php 2884 2884 } … … 2890 2890 <td class="spider_label"><label for="album_masonry_back_padding"><?php echo __('Back padding:', 'photo-gallery'); ?> </label></td> 2891 2891 <td> 2892 <input type="text" name="album_masonry_back_padding" id="album_masonry_back_padding" value="<?php echo $row->album_masonry_back_padding; ?>" class="spider_char_input" />2892 <input type="text" name="album_masonry_back_padding" id="album_masonry_back_padding" value="<?php echo esc_attr($row->album_masonry_back_padding); ?>" class="spider_char_input" /> 2893 2893 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2894 2894 </td> … … 2897 2897 <td class="spider_label"><label for="album_masonry_gal_title_font_size"><?php echo __('Gallery title/description font size:', 'photo-gallery'); ?> </label></td> 2898 2898 <td> 2899 <input type="text" name="album_masonry_gal_title_font_size" id="album_masonry_gal_title_font_size" value="<?php echo $row->album_masonry_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px2899 <input type="text" name="album_masonry_gal_title_font_size" id="album_masonry_gal_title_font_size" value="<?php echo esc_attr($row->album_masonry_gal_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 2900 2900 </td> 2901 2901 </tr> … … 2903 2903 <td class="spider_label"><label for="album_masonry_gal_title_font_color"><?php echo __('Gallery title/description font color:', 'photo-gallery'); ?> </label></td> 2904 2904 <td> 2905 <input type="text" name="album_masonry_gal_title_font_color" id="album_masonry_gal_title_font_color" value="<?php echo $row->album_masonry_gal_title_font_color; ?>" class="jscolor" />2905 <input type="text" name="album_masonry_gal_title_font_color" id="album_masonry_gal_title_font_color" value="<?php echo esc_attr($row->album_masonry_gal_title_font_color); ?>" class="jscolor" /> 2906 2906 </td> 2907 2907 </tr> … … 2917 2917 foreach ($font_weights as $key => $font_weight) { 2918 2918 ?> 2919 <option value="<?php echo $key; ?>" <?php echo (($row->album_masonry_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>2919 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_masonry_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 2920 2920 <?php 2921 2921 } … … 2927 2927 <td class="spider_label"><label for="album_masonry_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', 'photo-gallery'); ?> </label></td> 2928 2928 <td> 2929 <input type="text" name="album_masonry_gal_title_shadow" id="album_masonry_gal_title_shadow" value="<?php echo $row->album_masonry_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />2929 <input type="text" name="album_masonry_gal_title_shadow" id="album_masonry_gal_title_shadow" value="<?php echo esc_attr($row->album_masonry_gal_title_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 2930 2930 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2931 2931 </td> … … 2934 2934 <td class="spider_label"><label for="album_masonry_gal_title_margin"><?php echo __('Gallery title/description margin:', 'photo-gallery'); ?> </label></td> 2935 2935 <td> 2936 <input type="text" name="album_masonry_gal_title_margin" id="album_masonry_gal_title_margin" value="<?php echo $row->album_masonry_gal_title_margin; ?>" class="spider_char_input" />2936 <input type="text" name="album_masonry_gal_title_margin" id="album_masonry_gal_title_margin" value="<?php echo esc_attr($row->album_masonry_gal_title_margin); ?>" class="spider_char_input" /> 2937 2937 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 2938 2938 </td> … … 2945 2945 foreach ($aligns as $key => $align) { 2946 2946 ?> 2947 <option value="<?php echo $key; ?>" <?php echo (($row->album_masonry_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo _e($align, 'photo-gallery'); ?></option>2947 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->album_masonry_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 2948 2948 <?php 2949 2949 } … … 2969 2969 <td class="spider_label"><label for="blog_style_bg_color"><?php echo __('Background color:', 'photo-gallery'); ?> </label></td> 2970 2970 <td> 2971 <input type="text" name="blog_style_bg_color" id="blog_style_bg_color" value="<?php echo $row->blog_style_bg_color; ?>" class="jscolor"/>2971 <input type="text" name="blog_style_bg_color" id="blog_style_bg_color" value="<?php echo esc_attr($row->blog_style_bg_color); ?>" class="jscolor"/> 2972 2972 </td> 2973 2973 </tr> … … 2975 2975 <td class="spider_label"><label for="blog_style_transparent"><?php echo __('Background transparency:', 'photo-gallery'); ?> </label></td> 2976 2976 <td> 2977 <input type="text" name="blog_style_transparent" id="blog_style_transparent" value="<?php echo $row->blog_style_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %2977 <input type="text" name="blog_style_transparent" id="blog_style_transparent" value="<?php echo esc_attr($row->blog_style_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 2978 2978 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 2979 2979 </td> … … 2986 2986 foreach ($aligns as $key => $align) { 2987 2987 ?> 2988 <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>2988 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->blog_style_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 2989 2989 <?php 2990 2990 } … … 2996 2996 <td class="spider_label"><label for="blog_style_margin"><?php echo __('Margin:', 'photo-gallery'); ?> </label></td> 2997 2997 <td> 2998 <input type="text" name="blog_style_margin" id="blog_style_margin" value="<?php echo $row->blog_style_margin; ?>" class="spider_char_input"/>2998 <input type="text" name="blog_style_margin" id="blog_style_margin" value="<?php echo esc_attr($row->blog_style_margin); ?>" class="spider_char_input"/> 2999 2999 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3000 3000 </td> … … 3003 3003 <td class="spider_label"><label for="blog_style_padding"><?php echo __('Padding:', 'photo-gallery'); ?> </label></td> 3004 3004 <td> 3005 <input type="text" name="blog_style_padding" id="blog_style_padding" value="<?php echo $row->blog_style_padding; ?>" class="spider_char_input"/>3005 <input type="text" name="blog_style_padding" id="blog_style_padding" value="<?php echo esc_attr($row->blog_style_padding); ?>" class="spider_char_input"/> 3006 3006 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3007 3007 </td> … … 3010 3010 <td class="spider_label"><label for="blog_style_box_shadow"><?php echo __('Box shadow:', 'photo-gallery'); ?> </label></td> 3011 3011 <td> 3012 <input type="text" name="blog_style_box_shadow" id="blog_style_box_shadow" value="<?php echo $row->blog_style_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />3012 <input type="text" name="blog_style_box_shadow" id="blog_style_box_shadow" value="<?php echo esc_attr($row->blog_style_box_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 3013 3013 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3014 3014 </td> … … 3031 3031 <td class="spider_label"><label for="blog_style_img_font_size"><?php echo __('Font size:', 'photo-gallery'); ?> </label></td> 3032 3032 <td> 3033 <input type="text" name="blog_style_img_font_size" id="blog_style_img_font_size" value="<?php echo $row->blog_style_img_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3033 <input type="text" name="blog_style_img_font_size" id="blog_style_img_font_size" value="<?php echo esc_attr($row->blog_style_img_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3034 3034 </td> 3035 3035 </tr> … … 3037 3037 <td class="spider_label"><label for="blog_style_img_font_color"><?php echo __('Font color:', 'photo-gallery'); ?> </label></td> 3038 3038 <td> 3039 <input type="text" name="blog_style_img_font_color" id="blog_style_img_font_color" value="<?php echo $row->blog_style_img_font_color; ?>" class="jscolor"/>3039 <input type="text" name="blog_style_img_font_color" id="blog_style_img_font_color" value="<?php echo esc_attr($row->blog_style_img_font_color); ?>" class="jscolor"/> 3040 3040 </td> 3041 3041 </tr> … … 3043 3043 <td class="spider_label"><label for="blog_style_border_width"><?php echo __('Border width:', 'photo-gallery'); ?> </label></td> 3044 3044 <td> 3045 <input type="text" name="blog_style_border_width" id="blog_style_border_width" value="<?php echo $row->blog_style_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3045 <input type="text" name="blog_style_border_width" id="blog_style_border_width" value="<?php echo esc_attr($row->blog_style_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3046 3046 </td> 3047 3047 </tr> … … 3053 3053 foreach ($border_styles as $key => $border_style) { 3054 3054 ?> 3055 <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>3055 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->blog_style_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 3056 3056 <?php 3057 3057 } … … 3063 3063 <td class="spider_label"><label for="blog_style_border_color"><?php echo __('Border color:', 'photo-gallery'); ?> </label></td> 3064 3064 <td> 3065 <input type="text" name="blog_style_border_color" id="blog_style_border_color" value="<?php echo $row->blog_style_border_color; ?>" class="jscolor" />3065 <input type="text" name="blog_style_border_color" id="blog_style_border_color" value="<?php echo esc_attr($row->blog_style_border_color); ?>" class="jscolor" /> 3066 3066 </td> 3067 3067 </tr> … … 3069 3069 <td class="spider_label"><label for="blog_style_border_radius"><?php echo __('Border radius:', 'photo-gallery'); ?> </label></td> 3070 3070 <td> 3071 <input type="text" name="blog_style_border_radius" id="blog_style_border_radius" value="<?php echo $row->blog_style_border_radius; ?>" class="spider_char_input"/>3071 <input type="text" name="blog_style_border_radius" id="blog_style_border_radius" value="<?php echo esc_attr($row->blog_style_border_radius); ?>" class="spider_char_input"/> 3072 3072 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3073 3073 </td> … … 3086 3086 <td class="spider_label"><label for="blog_style_share_buttons_margin"><?php echo __('Buttons and title margin:', 'photo-gallery'); ?> </label></td> 3087 3087 <td> 3088 <input type="text" name="blog_style_share_buttons_margin" id="blog_style_share_buttons_margin" value="<?php echo $row->blog_style_share_buttons_margin; ?>" class="spider_char_input"/>3088 <input type="text" name="blog_style_share_buttons_margin" id="blog_style_share_buttons_margin" value="<?php echo esc_attr($row->blog_style_share_buttons_margin); ?>" class="spider_char_input"/> 3089 3089 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3090 3090 </td> … … 3093 3093 <td class="spider_label"><label for="blog_style_share_buttons_font_size"><?php echo __('Buttons size:', 'photo-gallery'); ?> </label></td> 3094 3094 <td> 3095 <input type="text" name="blog_style_share_buttons_font_size" id="blog_style_share_buttons_font_size" value="<?php echo $row->blog_style_share_buttons_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3095 <input type="text" name="blog_style_share_buttons_font_size" id="blog_style_share_buttons_font_size" value="<?php echo esc_attr($row->blog_style_share_buttons_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3096 3096 </td> 3097 3097 </tr> … … 3099 3099 <td class="spider_label"><label for="blog_style_share_buttons_color"><?php echo __('Buttons color:', 'photo-gallery'); ?> </label></td> 3100 3100 <td> 3101 <input type="text" name="blog_style_share_buttons_color" id="blog_style_share_buttons_color" value="<?php echo $row->blog_style_share_buttons_color; ?>" class="jscolor"/>3101 <input type="text" name="blog_style_share_buttons_color" id="blog_style_share_buttons_color" value="<?php echo esc_attr($row->blog_style_share_buttons_color); ?>" class="jscolor"/> 3102 3102 </td> 3103 3103 </tr> … … 3105 3105 <td class="spider_label"><label for="blog_style_share_buttons_border_width"><?php echo __('Buttons and title border width:', 'photo-gallery'); ?> </label></td> 3106 3106 <td> 3107 <input type="text" name="blog_style_share_buttons_border_width" id="blog_style_share_buttons_border_width" value="<?php echo $row->blog_style_share_buttons_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3107 <input type="text" name="blog_style_share_buttons_border_width" id="blog_style_share_buttons_border_width" value="<?php echo esc_attr($row->blog_style_share_buttons_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3108 3108 </td> 3109 3109 </tr> … … 3115 3115 foreach ($border_styles as $key => $border_style) { 3116 3116 ?> 3117 <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_share_buttons_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>3117 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->blog_style_share_buttons_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 3118 3118 <?php 3119 3119 } … … 3125 3125 <td class="spider_label"><label for="blog_style_share_buttons_border_color"><?php echo __('Buttons and title border color:', 'photo-gallery'); ?> </label></td> 3126 3126 <td> 3127 <input type="text" name="blog_style_share_buttons_border_color" id="blog_style_share_buttons_border_color" value="<?php echo $row->blog_style_share_buttons_border_color; ?>" class="jscolor"/>3127 <input type="text" name="blog_style_share_buttons_border_color" id="blog_style_share_buttons_border_color" value="<?php echo esc_attr($row->blog_style_share_buttons_border_color); ?>" class="jscolor"/> 3128 3128 </td> 3129 3129 </tr> … … 3131 3131 <td class="spider_label"><label for="blog_style_share_buttons_border_radius"><?php echo __('Buttons and title border radius:', 'photo-gallery'); ?> </label></td> 3132 3132 <td> 3133 <input type="text" name="blog_style_share_buttons_border_radius" id="blog_style_share_buttons_border_radius" value="<?php echo $row->blog_style_share_buttons_border_radius; ?>" class="spider_char_input"/>3133 <input type="text" name="blog_style_share_buttons_border_radius" id="blog_style_share_buttons_border_radius" value="<?php echo esc_attr($row->blog_style_share_buttons_border_radius); ?>" class="spider_char_input"/> 3134 3134 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3135 3135 </td> … … 3138 3138 <td class="spider_label"><label for="blog_style_share_buttons_bg_color"><?php echo __('Buttons and title background color:', 'photo-gallery'); ?> </label></td> 3139 3139 <td> 3140 <input type="text" name="blog_style_share_buttons_bg_color" id="blog_style_share_buttons_bg_color" value="<?php echo $row->blog_style_share_buttons_bg_color; ?>" class="jscolor"/>3140 <input type="text" name="blog_style_share_buttons_bg_color" id="blog_style_share_buttons_bg_color" value="<?php echo esc_attr($row->blog_style_share_buttons_bg_color); ?>" class="jscolor"/> 3141 3141 </td> 3142 3142 </tr> … … 3144 3144 <td class="spider_label"><label for="blog_style_share_buttons_bg_transparent"><?php echo __('Buttons and title background transparency:', 'photo-gallery'); ?> </label></td> 3145 3145 <td> 3146 <input type="text" name="blog_style_share_buttons_bg_transparent" id="blog_style_share_buttons_bg_transparent" value="<?php echo $row->blog_style_share_buttons_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %3146 <input type="text" name="blog_style_share_buttons_bg_transparent" id="blog_style_share_buttons_bg_transparent" value="<?php echo esc_attr($row->blog_style_share_buttons_bg_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 3147 3147 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 3148 3148 </td> … … 3155 3155 foreach ($aligns as $key => $align) { 3156 3156 ?> 3157 <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_share_buttons_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>3157 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->blog_style_share_buttons_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 3158 3158 <?php 3159 3159 } … … 3166 3166 <td> 3167 3167 <input type="text" name="blog_style_gal_title_font_size" id="blog_style_gal_title_font_size" value="<?php echo 3168 $row->blog_style_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3168 esc_attr($row->blog_style_gal_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3169 3169 </td> 3170 3170 </tr> … … 3172 3172 <td class="spider_label"><label for="blog_style_gal_title_font_color"><?php echo __('Gallery title/description font color:', 'photo-gallery'); ?> </label></td> 3173 3173 <td> 3174 <input type="text" name="blog_style_gal_title_font_color" id="blog_style_gal_title_font_color" value="<?php echo $row->blog_style_gal_title_font_color; ?>" class="jscolor" />3174 <input type="text" name="blog_style_gal_title_font_color" id="blog_style_gal_title_font_color" value="<?php echo esc_attr($row->blog_style_gal_title_font_color); ?>" class="jscolor" /> 3175 3175 </td> 3176 3176 </tr> … … 3186 3186 foreach ($font_weights as $key => $font_weight) { 3187 3187 ?> 3188 <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>3188 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->blog_style_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 3189 3189 <?php 3190 3190 } … … 3196 3196 <td class="spider_label"><label for="blog_style_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', 'photo-gallery'); ?> </label></td> 3197 3197 <td> 3198 <input type="text" name="blog_style_gal_title_shadow" id="blog_style_gal_title_shadow" value="<?php echo $row->blog_style_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />3198 <input type="text" name="blog_style_gal_title_shadow" id="blog_style_gal_title_shadow" value="<?php echo esc_attr($row->blog_style_gal_title_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 3199 3199 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3200 3200 </td> … … 3203 3203 <td class="spider_label"><label for="blog_style_gal_title_margin"><?php echo __('Gallery title/description margin:', 'photo-gallery'); ?> </label></td> 3204 3204 <td> 3205 <input type="text" name="blog_style_gal_title_margin" id="blog_style_gal_title_margin" value="<?php echo $row->blog_style_gal_title_margin; ?>" class="spider_char_input" />3205 <input type="text" name="blog_style_gal_title_margin" id="blog_style_gal_title_margin" value="<?php echo esc_attr($row->blog_style_gal_title_margin); ?>" class="spider_char_input" /> 3206 3206 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3207 3207 </td> … … 3214 3214 foreach ($aligns as $key => $align) { 3215 3215 ?> 3216 <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo _e($align, 'photo-gallery'); ?></option>3216 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->blog_style_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 3217 3217 <?php 3218 3218 } … … 3238 3238 <td class="spider_label"><label for="lightbox_overlay_bg_color"><?php echo __('Overlay background color:', 'photo-gallery'); ?> </label></td> 3239 3239 <td> 3240 <input type="text" name="lightbox_overlay_bg_color" id="lightbox_overlay_bg_color" value="<?php echo $row->lightbox_overlay_bg_color; ?>" class="jscolor"/>3240 <input type="text" name="lightbox_overlay_bg_color" id="lightbox_overlay_bg_color" value="<?php echo esc_attr($row->lightbox_overlay_bg_color); ?>" class="jscolor"/> 3241 3241 </td> 3242 3242 </tr> … … 3244 3244 <td class="spider_label"><label for="lightbox_overlay_bg_transparent"><?php echo __('Overlay background transparency:', 'photo-gallery'); ?> </label></td> 3245 3245 <td> 3246 <input type="text" name="lightbox_overlay_bg_transparent" id="lightbox_overlay_bg_transparent" value="<?php echo $row->lightbox_overlay_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %3246 <input type="text" name="lightbox_overlay_bg_transparent" id="lightbox_overlay_bg_transparent" value="<?php echo esc_attr($row->lightbox_overlay_bg_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 3247 3247 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 3248 3248 </td> … … 3251 3251 <td class="spider_label"><label for="lightbox_bg_color"><?php echo __('Lightbox background color:', 'photo-gallery'); ?> </label></td> 3252 3252 <td> 3253 <input type="text" name="lightbox_bg_color" id="lightbox_bg_color" value="<?php echo $row->lightbox_bg_color; ?>" class="jscolor"/>3253 <input type="text" name="lightbox_bg_color" id="lightbox_bg_color" value="<?php echo esc_attr($row->lightbox_bg_color); ?>" class="jscolor"/> 3254 3254 </td> 3255 3255 </tr> … … 3257 3257 <td class="spider_label"><label for="lightbox_bg_transparent"><?php echo __('Lightbox background transparency:', 'photo-gallery'); ?> </label></td> 3258 3258 <td> 3259 <input type="text" name="lightbox_bg_transparent" id="lightbox_bg_transparent" value="<?php echo $row->lightbox_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %3259 <input type="text" name="lightbox_bg_transparent" id="lightbox_bg_transparent" value="<?php echo esc_attr($row->lightbox_bg_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 3260 3260 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 3261 3261 </td> … … 3264 3264 <td class="spider_label"><label for="lightbox_ctrl_btn_height"><?php echo __('Control buttons height:', 'photo-gallery'); ?> </label></td> 3265 3265 <td> 3266 <input type="text" name="lightbox_ctrl_btn_height" id="lightbox_ctrl_btn_height" value="<?php echo $row->lightbox_ctrl_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3266 <input type="text" name="lightbox_ctrl_btn_height" id="lightbox_ctrl_btn_height" value="<?php echo esc_attr($row->lightbox_ctrl_btn_height); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3267 3267 </td> 3268 3268 </tr> … … 3270 3270 <td class="spider_label"><label for="lightbox_ctrl_btn_margin_top"><?php echo __('Control buttons margin (top):', 'photo-gallery'); ?> </label></td> 3271 3271 <td> 3272 <input type="text" name="lightbox_ctrl_btn_margin_top" id="lightbox_ctrl_btn_margin_top" value="<?php echo $row->lightbox_ctrl_btn_margin_top; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3272 <input type="text" name="lightbox_ctrl_btn_margin_top" id="lightbox_ctrl_btn_margin_top" value="<?php echo esc_attr($row->lightbox_ctrl_btn_margin_top); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3273 3273 </td> 3274 3274 </tr> … … 3276 3276 <td class="spider_label"><label for="lightbox_ctrl_btn_margin_left"><?php echo __('Control buttons margin (left):', 'photo-gallery'); ?> </label></td> 3277 3277 <td> 3278 <input type="text" name="lightbox_ctrl_btn_margin_left" id="lightbox_ctrl_btn_margin_left" value="<?php echo $row->lightbox_ctrl_btn_margin_left; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3278 <input type="text" name="lightbox_ctrl_btn_margin_left" id="lightbox_ctrl_btn_margin_left" value="<?php echo esc_attr($row->lightbox_ctrl_btn_margin_left); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3279 3279 </td> 3280 3280 </tr> … … 3291 3291 <td class="spider_label"><label for="lightbox_ctrl_cont_bg_color"><?php echo __('Control buttons background color:', 'photo-gallery'); ?> </label></td> 3292 3292 <td> 3293 <input type="text" name="lightbox_ctrl_cont_bg_color" id="lightbox_ctrl_cont_bg_color" value="<?php echo $row->lightbox_ctrl_cont_bg_color; ?>" class="jscolor"/>3293 <input type="text" name="lightbox_ctrl_cont_bg_color" id="lightbox_ctrl_cont_bg_color" value="<?php echo esc_attr($row->lightbox_ctrl_cont_bg_color); ?>" class="jscolor"/> 3294 3294 </td> 3295 3295 </tr> … … 3297 3297 <td class="spider_label"><label for="lightbox_ctrl_cont_border_radius"><?php echo __('Control buttons container border radius:', 'photo-gallery'); ?> </label></td> 3298 3298 <td> 3299 <input type="text" name="lightbox_ctrl_cont_border_radius" id="lightbox_ctrl_cont_border_radius" value="<?php echo $row->lightbox_ctrl_cont_border_radius; ?>" class="spider_char_input"/>3299 <input type="text" name="lightbox_ctrl_cont_border_radius" id="lightbox_ctrl_cont_border_radius" value="<?php echo esc_attr($row->lightbox_ctrl_cont_border_radius); ?>" class="spider_char_input"/> 3300 3300 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3301 3301 </td> … … 3304 3304 <td class="spider_label"><label for="lightbox_ctrl_cont_transparent"><?php echo __('Control buttons container background transparency:', 'photo-gallery'); ?> </label></td> 3305 3305 <td> 3306 <input type="text" name="lightbox_ctrl_cont_transparent" id="lightbox_ctrl_cont_transparent" value="<?php echo $row->lightbox_ctrl_cont_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %3306 <input type="text" name="lightbox_ctrl_cont_transparent" id="lightbox_ctrl_cont_transparent" value="<?php echo esc_attr($row->lightbox_ctrl_cont_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 3307 3307 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 3308 3308 </td> … … 3315 3315 foreach ($aligns as $key => $align) { 3316 3316 ?> 3317 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_ctrl_btn_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>3317 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_ctrl_btn_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 3318 3318 <?php 3319 3319 } … … 3325 3325 <td class="spider_label"><label for="lightbox_ctrl_btn_color"><?php echo __('Control buttons color:', 'photo-gallery'); ?> </label></td> 3326 3326 <td> 3327 <input type="text" name="lightbox_ctrl_btn_color" id="lightbox_ctrl_btn_color" value="<?php echo $row->lightbox_ctrl_btn_color; ?>" class="jscolor"/>3327 <input type="text" name="lightbox_ctrl_btn_color" id="lightbox_ctrl_btn_color" value="<?php echo esc_attr($row->lightbox_ctrl_btn_color); ?>" class="jscolor"/> 3328 3328 </td> 3329 3329 </tr> … … 3331 3331 <td class="spider_label"><label for="lightbox_ctrl_btn_transparent"><?php echo __('Control buttons transparency:', 'photo-gallery'); ?> </label></td> 3332 3332 <td> 3333 <input type="text" name="lightbox_ctrl_btn_transparent" id="lightbox_ctrl_btn_transparent" value="<?php echo $row->lightbox_ctrl_btn_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %3333 <input type="text" name="lightbox_ctrl_btn_transparent" id="lightbox_ctrl_btn_transparent" value="<?php echo esc_attr($row->lightbox_ctrl_btn_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 3334 3334 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 3335 3335 </td> … … 3338 3338 <td class="spider_label"><label for="lightbox_toggle_btn_height"><?php echo __('Toggle button height:', 'photo-gallery'); ?> </label></td> 3339 3339 <td> 3340 <input type="text" name="lightbox_toggle_btn_height" id="lightbox_toggle_btn_height" value="<?php echo $row->lightbox_toggle_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3340 <input type="text" name="lightbox_toggle_btn_height" id="lightbox_toggle_btn_height" value="<?php echo esc_attr($row->lightbox_toggle_btn_height); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3341 3341 </td> 3342 3342 </tr> … … 3344 3344 <td class="spider_label"><label for="lightbox_toggle_btn_width"><?php echo __('Toggle button width:', 'photo-gallery'); ?> </label></td> 3345 3345 <td> 3346 <input type="text" name="lightbox_toggle_btn_width" id="lightbox_toggle_btn_width" value="<?php echo $row->lightbox_toggle_btn_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3346 <input type="text" name="lightbox_toggle_btn_width" id="lightbox_toggle_btn_width" value="<?php echo esc_attr($row->lightbox_toggle_btn_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3347 3347 </td> 3348 3348 </tr> … … 3351 3351 </td> 3352 3352 <td> 3353 <input type="text" name="lightbox_close_btn_border_radius" id="lightbox_close_btn_border_radius" value="<?php echo $row->lightbox_close_btn_border_radius; ?>" class="spider_char_input"/>3353 <input type="text" name="lightbox_close_btn_border_radius" id="lightbox_close_btn_border_radius" value="<?php echo esc_attr($row->lightbox_close_btn_border_radius); ?>" class="spider_char_input"/> 3354 3354 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3355 3355 </td> … … 3358 3358 <td class="spider_label"><label for="lightbox_close_btn_border_width"><?php echo __('Close button border width:', 'photo-gallery'); ?> </label></td> 3359 3359 <td> 3360 <input type="text" name="lightbox_close_btn_border_width" id="lightbox_close_btn_border_width" value="<?php echo $row->lightbox_close_btn_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3360 <input type="text" name="lightbox_close_btn_border_width" id="lightbox_close_btn_border_width" value="<?php echo esc_attr($row->lightbox_close_btn_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3361 3361 </td> 3362 3362 </tr> … … 3368 3368 foreach ($border_styles as $key => $border_style) { 3369 3369 ?> 3370 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_close_btn_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>3370 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_close_btn_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 3371 3371 <?php 3372 3372 } … … 3378 3378 <td class="spider_label"><label for="lightbox_close_btn_border_color"><?php echo __('Close button border color:', 'photo-gallery'); ?> </label></td> 3379 3379 <td> 3380 <input type="text" name="lightbox_close_btn_border_color" id="lightbox_close_btn_border_color" value="<?php echo $row->lightbox_close_btn_border_color; ?>" class="jscolor"/>3380 <input type="text" name="lightbox_close_btn_border_color" id="lightbox_close_btn_border_color" value="<?php echo esc_attr($row->lightbox_close_btn_border_color); ?>" class="jscolor"/> 3381 3381 </td> 3382 3382 </tr> … … 3384 3384 <td class="spider_label"><label for="lightbox_close_btn_box_shadow"><?php echo __('Close button box shadow:', 'photo-gallery'); ?> </label></td> 3385 3385 <td> 3386 <input type="text" name="lightbox_close_btn_box_shadow" id="lightbox_close_btn_box_shadow" value="<?php echo $row->lightbox_close_btn_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />3386 <input type="text" name="lightbox_close_btn_box_shadow" id="lightbox_close_btn_box_shadow" value="<?php echo esc_attr($row->lightbox_close_btn_box_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 3387 3387 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3388 3388 </td> … … 3391 3391 <td class="spider_label"><label for="lightbox_close_btn_bg_color"><?php echo __('Close button background color:', 'photo-gallery'); ?> </label></td> 3392 3392 <td> 3393 <input type="text" name="lightbox_close_btn_bg_color" id="lightbox_close_btn_bg_color" value="<?php echo $row->lightbox_close_btn_bg_color; ?>" class="jscolor"/>3393 <input type="text" name="lightbox_close_btn_bg_color" id="lightbox_close_btn_bg_color" value="<?php echo esc_attr($row->lightbox_close_btn_bg_color); ?>" class="jscolor"/> 3394 3394 <div class="spider_description"><?php echo __('The option does not apply to Full-width lightbox.', 'photo-gallery'); ?></div> 3395 3395 </td> … … 3398 3398 <td class="spider_label"><label for="lightbox_close_btn_transparent"><?php echo __('Close button transparency:', 'photo-gallery'); ?> </label></td> 3399 3399 <td> 3400 <input type="text" name="lightbox_close_btn_transparent" id="lightbox_close_btn_transparent" value="<?php echo $row->lightbox_close_btn_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %3400 <input type="text" name="lightbox_close_btn_transparent" id="lightbox_close_btn_transparent" value="<?php echo esc_attr($row->lightbox_close_btn_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 3401 3401 </td> 3402 3402 </tr> … … 3404 3404 <td class="spider_label"><label for="lightbox_close_btn_width"><?php echo __('Close button width:', 'photo-gallery'); ?> </label></td> 3405 3405 <td> 3406 <input type="text" name="lightbox_close_btn_width" id="lightbox_close_btn_width" value="<?php echo $row->lightbox_close_btn_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3406 <input type="text" name="lightbox_close_btn_width" id="lightbox_close_btn_width" value="<?php echo esc_attr($row->lightbox_close_btn_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3407 3407 <div class="spider_description"><?php echo __('The option does not apply to Full-width lightbox.', 'photo-gallery'); ?></div> 3408 3408 </td> … … 3411 3411 <td class="spider_label"><label for="lightbox_close_btn_height"><?php echo __('Close button height:', 'photo-gallery'); ?> </label></td> 3412 3412 <td> 3413 <input type="text" name="lightbox_close_btn_height" id="lightbox_close_btn_height" value="<?php echo $row->lightbox_close_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3413 <input type="text" name="lightbox_close_btn_height" id="lightbox_close_btn_height" value="<?php echo esc_attr($row->lightbox_close_btn_height); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3414 3414 <div class="spider_description"><?php echo __('The option does not apply to Full-width lightbox.', 'photo-gallery'); ?></div> 3415 3415 </td> … … 3418 3418 <td class="spider_label"><label for="lightbox_close_btn_top"><?php echo __('Close button top:', 'photo-gallery'); ?> </label></td> 3419 3419 <td> 3420 <input type="text" name="lightbox_close_btn_top" id="lightbox_close_btn_top" value="<?php echo $row->lightbox_close_btn_top; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3420 <input type="text" name="lightbox_close_btn_top" id="lightbox_close_btn_top" value="<?php echo esc_attr($row->lightbox_close_btn_top); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3421 3421 <div class="spider_description"><?php echo __('The option does not apply to Full-width lightbox.', 'photo-gallery'); ?></div> 3422 3422 </td> … … 3425 3425 <td class="spider_label"><label for="lightbox_close_btn_right"><?php echo __('Close button right:', 'photo-gallery'); ?> </label></td> 3426 3426 <td> 3427 <input type="text" name="lightbox_close_btn_right" id="lightbox_close_btn_right" value="<?php echo $row->lightbox_close_btn_right; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3427 <input type="text" name="lightbox_close_btn_right" id="lightbox_close_btn_right" value="<?php echo esc_attr($row->lightbox_close_btn_right); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3428 3428 <div class="spider_description"><?php echo __('The option does not apply to Full-width lightbox.', 'photo-gallery'); ?></div> 3429 3429 </td> … … 3432 3432 <td class="spider_label"><label for="lightbox_close_btn_size"><?php echo __('Close button size:', 'photo-gallery'); ?> </label></td> 3433 3433 <td> 3434 <input type="text" name="lightbox_close_btn_size" id="lightbox_close_btn_size" value="<?php echo $row->lightbox_close_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3434 <input type="text" name="lightbox_close_btn_size" id="lightbox_close_btn_size" value="<?php echo esc_attr($row->lightbox_close_btn_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3435 3435 </td> 3436 3436 </tr> … … 3438 3438 <td class="spider_label"><label for="lightbox_close_btn_color"><?php echo __('Close button color:', 'photo-gallery'); ?> </label></td> 3439 3439 <td> 3440 <input type="text" name="lightbox_close_btn_color" id="lightbox_close_btn_color" value="<?php echo $row->lightbox_close_btn_color; ?>" class="jscolor"/>3440 <input type="text" name="lightbox_close_btn_color" id="lightbox_close_btn_color" value="<?php echo esc_attr($row->lightbox_close_btn_color); ?>" class="jscolor"/> 3441 3441 </td> 3442 3442 </tr> … … 3444 3444 <td class="spider_label"><label for="lightbox_close_btn_full_color"><?php echo __('Fullscreen close button color:', 'photo-gallery'); ?> </label></td> 3445 3445 <td> 3446 <input type="text" name="lightbox_close_btn_full_color" id="lightbox_close_btn_full_color" value="<?php echo $row->lightbox_close_btn_full_color; ?>" class="jscolor"/>3446 <input type="text" name="lightbox_close_btn_full_color" id="lightbox_close_btn_full_color" value="<?php echo esc_attr($row->lightbox_close_btn_full_color); ?>" class="jscolor"/> 3447 3447 </td> 3448 3448 </tr> … … 3450 3450 <td class="spider_label"><label for="lightbox_comment_share_button_color"><?php echo __('Share buttons color:', 'photo-gallery'); ?> </label></td> 3451 3451 <td> 3452 <input type="text" name="lightbox_comment_share_button_color" id="lightbox_comment_share_button_color" value="<?php echo $row->lightbox_comment_share_button_color; ?>" class="jscolor" />3452 <input type="text" name="lightbox_comment_share_button_color" id="lightbox_comment_share_button_color" value="<?php echo esc_attr($row->lightbox_comment_share_button_color); ?>" class="jscolor" /> 3453 3453 </td> 3454 3454 </tr> … … 3470 3470 foreach ($button_styles as $key => $button_style) { 3471 3471 ?> 3472 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_rl_btn_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($button_style, 'photo-gallery'); ?></option>3472 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_rl_btn_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($button_style, 'photo-gallery'); ?></option> 3473 3473 <?php 3474 3474 } … … 3480 3480 <td class="spider_label"><label for="lightbox_rl_btn_bg_color"><?php echo __('Right, left buttons background color:', 'photo-gallery'); ?> </label></td> 3481 3481 <td> 3482 <input type="text" name="lightbox_rl_btn_bg_color" id="lightbox_rl_btn_bg_color" value="<?php echo $row->lightbox_rl_btn_bg_color; ?>" class="jscolor"/>3482 <input type="text" name="lightbox_rl_btn_bg_color" id="lightbox_rl_btn_bg_color" value="<?php echo esc_attr($row->lightbox_rl_btn_bg_color); ?>" class="jscolor"/> 3483 3483 </td> 3484 3484 </tr> … … 3486 3486 <td class="spider_label"><label for="lightbox_rl_btn_transparent"><?php echo __('Right, left buttons transparency:', 'photo-gallery'); ?> </label></td> 3487 3487 <td> 3488 <input type="text" name="lightbox_rl_btn_transparent" id="lightbox_rl_btn_transparent" value="<?php echo $row->lightbox_rl_btn_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %3488 <input type="text" name="lightbox_rl_btn_transparent" id="lightbox_rl_btn_transparent" value="<?php echo esc_attr($row->lightbox_rl_btn_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 3489 3489 </td> 3490 3490 </tr> … … 3492 3492 <td class="spider_label"><label for="lightbox_rl_btn_box_shadow"><?php echo __('Right, left buttons box shadow:', 'photo-gallery'); ?> </label></td> 3493 3493 <td> 3494 <input type="text" name="lightbox_rl_btn_box_shadow" id="lightbox_rl_btn_box_shadow" value="<?php echo $row->lightbox_rl_btn_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />3494 <input type="text" name="lightbox_rl_btn_box_shadow" id="lightbox_rl_btn_box_shadow" value="<?php echo esc_attr($row->lightbox_rl_btn_box_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 3495 3495 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3496 3496 </td> … … 3499 3499 <td class="spider_label"><label for="lightbox_rl_btn_height"><?php echo __('Right, left buttons height:', 'photo-gallery'); ?> </label></td> 3500 3500 <td> 3501 <input type="text" name="lightbox_rl_btn_height" id="lightbox_rl_btn_height" value="<?php echo $row->lightbox_rl_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3501 <input type="text" name="lightbox_rl_btn_height" id="lightbox_rl_btn_height" value="<?php echo esc_attr($row->lightbox_rl_btn_height); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3502 3502 </td> 3503 3503 </tr> … … 3505 3505 <td class="spider_label"><label for="lightbox_rl_btn_width"><?php echo __('Right, left buttons width:', 'photo-gallery'); ?> </label></td> 3506 3506 <td> 3507 <input type="text" name="lightbox_rl_btn_width" id="lightbox_rl_btn_width" value="<?php echo $row->lightbox_rl_btn_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3507 <input type="text" name="lightbox_rl_btn_width" id="lightbox_rl_btn_width" value="<?php echo esc_attr($row->lightbox_rl_btn_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3508 3508 </td> 3509 3509 </tr> … … 3511 3511 <td class="spider_label"><label for="lightbox_rl_btn_size"><?php echo __('Right, left buttons size:', 'photo-gallery'); ?> </label></td> 3512 3512 <td> 3513 <input type="text" name="lightbox_rl_btn_size" id="lightbox_rl_btn_size" value="<?php echo $row->lightbox_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3513 <input type="text" name="lightbox_rl_btn_size" id="lightbox_rl_btn_size" value="<?php echo esc_attr($row->lightbox_rl_btn_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3514 3514 </td> 3515 3515 </tr> … … 3517 3517 <td class="spider_label"><label for="lightbox_close_rl_btn_hover_color"><?php echo __('Right, left, close buttons hover color:', 'photo-gallery'); ?> </label></td> 3518 3518 <td> 3519 <input type="text" name="lightbox_close_rl_btn_hover_color" id="lightbox_close_rl_btn_hover_color" value="<?php echo $row->lightbox_close_rl_btn_hover_color; ?>" class="jscolor" />3519 <input type="text" name="lightbox_close_rl_btn_hover_color" id="lightbox_close_rl_btn_hover_color" value="<?php echo esc_attr($row->lightbox_close_rl_btn_hover_color); ?>" class="jscolor" /> 3520 3520 </td> 3521 3521 </tr> … … 3523 3523 <td class="spider_label"><label for="lightbox_rl_btn_color"><?php echo __('Right, left buttons color:', 'photo-gallery'); ?> </label></td> 3524 3524 <td> 3525 <input type="text" name="lightbox_rl_btn_color" id="lightbox_rl_btn_color" value="<?php echo $row->lightbox_rl_btn_color; ?>" class="jscolor"/>3525 <input type="text" name="lightbox_rl_btn_color" id="lightbox_rl_btn_color" value="<?php echo esc_attr($row->lightbox_rl_btn_color); ?>" class="jscolor"/> 3526 3526 </td> 3527 3527 </tr> … … 3529 3529 <td class="spider_label"><label for="lightbox_rl_btn_border_radius"><?php echo __('Right, left buttons border radius:', 'photo-gallery'); ?> </label></td> 3530 3530 <td> 3531 <input type="text" name="lightbox_rl_btn_border_radius" id="lightbox_rl_btn_border_radius" value="<?php echo $row->lightbox_rl_btn_border_radius; ?>" class="spider_char_input"/>3531 <input type="text" name="lightbox_rl_btn_border_radius" id="lightbox_rl_btn_border_radius" value="<?php echo esc_attr($row->lightbox_rl_btn_border_radius); ?>" class="spider_char_input"/> 3532 3532 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3533 3533 </td> … … 3536 3536 <td class="spider_label"><label for="lightbox_rl_btn_border_width"><?php echo __('Right, left buttons border width:', 'photo-gallery'); ?> </label></td> 3537 3537 <td> 3538 <input type="text" name="lightbox_rl_btn_border_width" id="lightbox_rl_btn_border_width" value="<?php echo $row->lightbox_rl_btn_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3538 <input type="text" name="lightbox_rl_btn_border_width" id="lightbox_rl_btn_border_width" value="<?php echo esc_attr($row->lightbox_rl_btn_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3539 3539 </td> 3540 3540 </tr> … … 3546 3546 foreach ($border_styles as $key => $border_style) { 3547 3547 ?> 3548 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_rl_btn_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>3548 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_rl_btn_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 3549 3549 <?php 3550 3550 } … … 3556 3556 <td class="spider_label"><label for="lightbox_rl_btn_border_color"><?php echo __('Right, left buttons border color:', 'photo-gallery'); ?> </label></td> 3557 3557 <td> 3558 <input type="text" name="lightbox_rl_btn_border_color" id="lightbox_rl_btn_border_color" value="<?php echo $row->lightbox_rl_btn_border_color; ?>" class="jscolor"/>3558 <input type="text" name="lightbox_rl_btn_border_color" id="lightbox_rl_btn_border_color" value="<?php echo esc_attr($row->lightbox_rl_btn_border_color); ?>" class="jscolor"/> 3559 3559 </td> 3560 3560 </tr> … … 3573 3573 <td class="spider_label"><label for="lightbox_filmstrip_thumb_margin"><?php echo __('Filmstrip thumbnail margin:', 'photo-gallery'); ?> </label></td> 3574 3574 <td> 3575 <input type="text" name="lightbox_filmstrip_thumb_margin" id="lightbox_filmstrip_thumb_margin" value="<?php echo $row->lightbox_filmstrip_thumb_margin; ?>" class="spider_char_input"/>3575 <input type="text" name="lightbox_filmstrip_thumb_margin" id="lightbox_filmstrip_thumb_margin" value="<?php echo esc_attr($row->lightbox_filmstrip_thumb_margin); ?>" class="spider_char_input"/> 3576 3576 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3577 3577 </td> … … 3580 3580 <td class="spider_label"><label for="lightbox_filmstrip_thumb_border_width"><?php echo __('Filmstrip thumbnail border width:', 'photo-gallery'); ?> </label></td> 3581 3581 <td> 3582 <input type="text" name="lightbox_filmstrip_thumb_border_width" id="lightbox_filmstrip_thumb_border_width" value="<?php echo $row->lightbox_filmstrip_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3582 <input type="text" name="lightbox_filmstrip_thumb_border_width" id="lightbox_filmstrip_thumb_border_width" value="<?php echo esc_attr($row->lightbox_filmstrip_thumb_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3583 3583 </td> 3584 3584 </tr> … … 3590 3590 foreach ($border_styles as $key => $border_style) { 3591 3591 ?> 3592 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_filmstrip_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>3592 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_filmstrip_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 3593 3593 <?php 3594 3594 } … … 3600 3600 <td class="spider_label"><label for="lightbox_filmstrip_thumb_border_color"><?php echo __('Filmstrip thumbnail border color:', 'photo-gallery'); ?> </label></td> 3601 3601 <td> 3602 <input type="text" name="lightbox_filmstrip_thumb_border_color" id="lightbox_filmstrip_thumb_border_color" value="<?php echo $row->lightbox_filmstrip_thumb_border_color; ?>" class="jscolor" />3602 <input type="text" name="lightbox_filmstrip_thumb_border_color" id="lightbox_filmstrip_thumb_border_color" value="<?php echo esc_attr($row->lightbox_filmstrip_thumb_border_color); ?>" class="jscolor" /> 3603 3603 </td> 3604 3604 </tr> … … 3606 3606 <td class="spider_label"><label for="lightbox_filmstrip_thumb_border_radius"><?php echo __('Filmstrip thumbnail border radius:', 'photo-gallery'); ?> </label></td> 3607 3607 <td> 3608 <input type="text" name="lightbox_filmstrip_thumb_border_radius" id="lightbox_filmstrip_thumb_border_radius" value="<?php echo $row->lightbox_filmstrip_thumb_border_radius; ?>" class="spider_char_input"/>3608 <input type="text" name="lightbox_filmstrip_thumb_border_radius" id="lightbox_filmstrip_thumb_border_radius" value="<?php echo esc_attr($row->lightbox_filmstrip_thumb_border_radius); ?>" class="spider_char_input"/> 3609 3609 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3610 3610 </td> … … 3613 3613 <td class="spider_label"><label for="lightbox_filmstrip_thumb_active_border_width"><?php echo __('Filmstrip thumbnail active border width:', 'photo-gallery'); ?> </label></td> 3614 3614 <td> 3615 <input type="text" name="lightbox_filmstrip_thumb_active_border_width" id="lightbox_filmstrip_thumb_active_border_width" value="<?php echo $row->lightbox_filmstrip_thumb_active_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3615 <input type="text" name="lightbox_filmstrip_thumb_active_border_width" id="lightbox_filmstrip_thumb_active_border_width" value="<?php echo esc_attr($row->lightbox_filmstrip_thumb_active_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3616 3616 </td> 3617 3617 </tr> … … 3619 3619 <td class="spider_label"> <label for="lightbox_filmstrip_thumb_active_border_color"><?php echo __('Filmstrip thumbnail active border color:', 'photo-gallery'); ?></label></td> 3620 3620 <td> 3621 <input type="text" name="lightbox_filmstrip_thumb_active_border_color" id="lightbox_filmstrip_thumb_active_border_color" value="<?php echo $row->lightbox_filmstrip_thumb_active_border_color; ?>" class="jscolor"/>3621 <input type="text" name="lightbox_filmstrip_thumb_active_border_color" id="lightbox_filmstrip_thumb_active_border_color" value="<?php echo esc_attr($row->lightbox_filmstrip_thumb_active_border_color); ?>" class="jscolor"/> 3622 3622 </td> 3623 3623 </tr> … … 3625 3625 <td class="spider_label"><label for="lightbox_filmstrip_thumb_deactive_transparent"><?php echo __('Filmstrip thumbnail deactive transparency:', 'photo-gallery'); ?> </label></td> 3626 3626 <td> 3627 <input type="text" name="lightbox_filmstrip_thumb_deactive_transparent" id="lightbox_filmstrip_thumb_deactive_transparent" value="<?php echo $row->lightbox_filmstrip_thumb_deactive_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %3627 <input type="text" name="lightbox_filmstrip_thumb_deactive_transparent" id="lightbox_filmstrip_thumb_deactive_transparent" value="<?php echo esc_attr($row->lightbox_filmstrip_thumb_deactive_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 3628 3628 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 3629 3629 </td> … … 3632 3632 <td class="spider_label"><label for="lightbox_filmstrip_rl_btn_size"><?php echo __('Filmstrip right, left buttons size:', 'photo-gallery'); ?> </label></td> 3633 3633 <td> 3634 <input type="text" name="lightbox_filmstrip_rl_btn_size" id="lightbox_filmstrip_rl_btn_size" value="<?php echo $row->lightbox_filmstrip_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3634 <input type="text" name="lightbox_filmstrip_rl_btn_size" id="lightbox_filmstrip_rl_btn_size" value="<?php echo esc_attr($row->lightbox_filmstrip_rl_btn_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3635 3635 </td> 3636 3636 </tr> … … 3638 3638 <td class="spider_label"><label for="lightbox_filmstrip_rl_btn_color"><?php echo __('Filmstrip right, left buttons color:', 'photo-gallery'); ?> </label></td> 3639 3639 <td> 3640 <input type="text" name="lightbox_filmstrip_rl_btn_color" id="lightbox_filmstrip_rl_btn_color" value="<?php echo $row->lightbox_filmstrip_rl_btn_color; ?>" class="jscolor"/>3640 <input type="text" name="lightbox_filmstrip_rl_btn_color" id="lightbox_filmstrip_rl_btn_color" value="<?php echo esc_attr($row->lightbox_filmstrip_rl_btn_color); ?>" class="jscolor"/> 3641 3641 </td> 3642 3642 </tr> … … 3644 3644 <td class="spider_label"><label for="lightbox_filmstrip_rl_bg_color"><?php echo __('Filmstrip right, left button background color:', 'photo-gallery'); ?></label></td> 3645 3645 <td> 3646 <input type="text" name="lightbox_filmstrip_rl_bg_color" id="lightbox_filmstrip_rl_bg_color" value="<?php echo $row->lightbox_filmstrip_rl_bg_color; ?>" class="jscolor"/>3646 <input type="text" name="lightbox_filmstrip_rl_bg_color" id="lightbox_filmstrip_rl_bg_color" value="<?php echo esc_attr($row->lightbox_filmstrip_rl_bg_color); ?>" class="jscolor"/> 3647 3647 </td> 3648 3648 </tr> … … 3663 3663 foreach ($aligns as $key => $align) { 3664 3664 ?> 3665 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_rate_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>3665 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_rate_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 3666 3666 <?php 3667 3667 } … … 3677 3677 foreach ($rate_icons as $key => $rate_icon) { 3678 3678 ?> 3679 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_rate_icon == $key) ? 'selected="selected"' : ''); ?>><?php echo__($rate_icon, 'photo-gallery'); ?></option>3679 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_rate_icon == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($rate_icon, 'photo-gallery'); ?></option> 3680 3680 <?php 3681 3681 } … … 3687 3687 <td class="spider_label"><label for="lightbox_rate_color"><?php echo __('Rating color:', 'photo-gallery'); ?> </label></td> 3688 3688 <td> 3689 <input type="text" name="lightbox_rate_color" id="lightbox_rate_color" value="<?php echo $row->lightbox_rate_color; ?>" class="jscolor"/>3689 <input type="text" name="lightbox_rate_color" id="lightbox_rate_color" value="<?php echo esc_attr($row->lightbox_rate_color); ?>" class="jscolor"/> 3690 3690 </td> 3691 3691 </tr> … … 3693 3693 <td class="spider_label"><label for="lightbox_rate_hover_color"><?php echo __('Rating hover color:', 'photo-gallery'); ?> </label></td> 3694 3694 <td> 3695 <input type="text" name="lightbox_rate_hover_color" id="lightbox_rate_hover_color" value="<?php echo $row->lightbox_rate_hover_color; ?>" class="jscolor"/>3695 <input type="text" name="lightbox_rate_hover_color" id="lightbox_rate_hover_color" value="<?php echo esc_attr($row->lightbox_rate_hover_color); ?>" class="jscolor"/> 3696 3696 </td> 3697 3697 </tr> … … 3699 3699 <td class="spider_label"><label for="lightbox_rate_size"><?php echo __('Rating size:', 'photo-gallery'); ?> </label></td> 3700 3700 <td> 3701 <input type="text" name="lightbox_rate_size" id="lightbox_rate_size" value="<?php echo $row->lightbox_rate_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3701 <input type="text" name="lightbox_rate_size" id="lightbox_rate_size" value="<?php echo esc_attr($row->lightbox_rate_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3702 3702 </td> 3703 3703 </tr> … … 3705 3705 <td class="spider_label"><label for="lightbox_rate_stars_count"><?php echo __('Rating icon count:', 'photo-gallery'); ?> </label></td> 3706 3706 <td> 3707 <input type="text" name="lightbox_rate_stars_count" id="lightbox_rate_stars_count" value="<?php echo $row->lightbox_rate_stars_count; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/>3707 <input type="text" name="lightbox_rate_stars_count" id="lightbox_rate_stars_count" value="<?php echo esc_attr($row->lightbox_rate_stars_count); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> 3708 3708 </td> 3709 3709 </tr> … … 3711 3711 <td class="spider_label"><label for="lightbox_rate_padding"><?php echo __('Rating padding:', 'photo-gallery'); ?> </label></td> 3712 3712 <td> 3713 <input type="text" name="lightbox_rate_padding" id="lightbox_rate_padding" value="<?php echo $row->lightbox_rate_padding; ?>" class="spider_char_input"/>3713 <input type="text" name="lightbox_rate_padding" id="lightbox_rate_padding" value="<?php echo esc_attr($row->lightbox_rate_padding); ?>" class="spider_char_input"/> 3714 3714 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3715 3715 </td> … … 3731 3731 foreach ($aligns as $key => $align) { 3732 3732 ?> 3733 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_hit_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>3733 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_hit_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 3734 3734 <?php 3735 3735 } … … 3741 3741 <td class="spider_label"><label for="lightbox_hit_bg_color"><?php echo __('Hit counter background color:', 'photo-gallery'); ?> </label></td> 3742 3742 <td> 3743 <input type="text" name="lightbox_hit_bg_color" id="lightbox_hit_bg_color" value="<?php echo $row->lightbox_hit_bg_color; ?>" class="jscolor"/>3743 <input type="text" name="lightbox_hit_bg_color" id="lightbox_hit_bg_color" value="<?php echo esc_attr($row->lightbox_hit_bg_color); ?>" class="jscolor"/> 3744 3744 </td> 3745 3745 </tr> … … 3747 3747 <td class="spider_label"><label for="lightbox_hit_bg_transparent"><?php echo __('Hit counter background transparency:', 'photo-gallery'); ?> </label></td> 3748 3748 <td> 3749 <input type="text" name="lightbox_hit_bg_transparent" id="lightbox_hit_bg_transparent" value="<?php echo $row->lightbox_hit_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %3749 <input type="text" name="lightbox_hit_bg_transparent" id="lightbox_hit_bg_transparent" value="<?php echo esc_attr($row->lightbox_hit_bg_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 3750 3750 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 3751 3751 </td> … … 3754 3754 <td class="spider_label"><label for="lightbox_hit_border_width"><?php echo __('Hit counter border width:', 'photo-gallery'); ?> </label></td> 3755 3755 <td> 3756 <input type="text" name="lightbox_hit_border_width" id="lightbox_hit_border_width" value="<?php echo $row->lightbox_hit_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3756 <input type="text" name="lightbox_hit_border_width" id="lightbox_hit_border_width" value="<?php echo esc_attr($row->lightbox_hit_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3757 3757 </td> 3758 3758 </tr> … … 3764 3764 foreach ($border_styles as $key => $border_style) { 3765 3765 ?> 3766 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_hit_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>3766 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_hit_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 3767 3767 <?php 3768 3768 } … … 3774 3774 <td class="spider_label"><label for="lightbox_hit_border_color"><?php echo __('Hit counter border color:', 'photo-gallery'); ?> </label></td> 3775 3775 <td> 3776 <input type="text" name="lightbox_hit_border_color" id="lightbox_hit_border_color" value="<?php echo $row->lightbox_hit_border_color; ?>" class="jscolor"/>3776 <input type="text" name="lightbox_hit_border_color" id="lightbox_hit_border_color" value="<?php echo esc_attr($row->lightbox_hit_border_color); ?>" class="jscolor"/> 3777 3777 </td> 3778 3778 </tr> … … 3780 3780 <td class="spider_label"><label for="lightbox_hit_border_radius"><?php echo __('Hit counter border radius:', 'photo-gallery'); ?> </label></td> 3781 3781 <td> 3782 <input type="text" name="lightbox_hit_border_radius" id="lightbox_hit_border_radius" value="<?php echo $row->lightbox_hit_border_radius; ?>" class="spider_char_input"/>3782 <input type="text" name="lightbox_hit_border_radius" id="lightbox_hit_border_radius" value="<?php echo esc_attr($row->lightbox_hit_border_radius); ?>" class="spider_char_input"/> 3783 3783 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3784 3784 </td> … … 3787 3787 <td class="spider_label"><label for="lightbox_hit_padding"><?php echo __('Hit counter padding:', 'photo-gallery'); ?> </label></td> 3788 3788 <td> 3789 <input type="text" name="lightbox_hit_padding" id="lightbox_hit_padding" value="<?php echo $row->lightbox_hit_padding; ?>" class="spider_char_input"/>3789 <input type="text" name="lightbox_hit_padding" id="lightbox_hit_padding" value="<?php echo esc_attr($row->lightbox_hit_padding); ?>" class="spider_char_input"/> 3790 3790 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3791 3791 </td> … … 3794 3794 <td class="spider_label"><label for="lightbox_hit_margin"><?php echo __('Hit counter margin:', 'photo-gallery'); ?> </label></td> 3795 3795 <td> 3796 <input type="text" name="lightbox_hit_margin" id="lightbox_hit_margin" value="<?php echo $row->lightbox_hit_margin; ?>" class="spider_char_input"/>3796 <input type="text" name="lightbox_hit_margin" id="lightbox_hit_margin" value="<?php echo esc_attr($row->lightbox_hit_margin); ?>" class="spider_char_input"/> 3797 3797 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3798 3798 </td> … … 3801 3801 <td class="spider_label"><label for="lightbox_hit_color"><?php echo __('Hit counter font color:', 'photo-gallery'); ?> </label></td> 3802 3802 <td> 3803 <input type="text" name="lightbox_hit_color" id="lightbox_hit_color" value="<?php echo $row->lightbox_hit_color; ?>" class="jscolor"/>3803 <input type="text" name="lightbox_hit_color" id="lightbox_hit_color" value="<?php echo esc_attr($row->lightbox_hit_color); ?>" class="jscolor"/> 3804 3804 </td> 3805 3805 </tr> … … 3815 3815 foreach ($font_weights as $key => $font_weight) { 3816 3816 ?> 3817 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_hit_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>3817 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_hit_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 3818 3818 <?php 3819 3819 } … … 3826 3826 </td> 3827 3827 <td> 3828 <input type="text" name="lightbox_hit_font_size" id="lightbox_hit_font_size" value="<?php echo $row->lightbox_hit_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3828 <input type="text" name="lightbox_hit_font_size" id="lightbox_hit_font_size" value="<?php echo esc_attr($row->lightbox_hit_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3829 3829 </td> 3830 3830 </tr> … … 3855 3855 foreach ($aligns as $key => $align) { 3856 3856 ?> 3857 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_info_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>3857 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_info_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 3858 3858 <?php 3859 3859 } … … 3865 3865 <td class="spider_label"><label for="lightbox_info_bg_color"><?php echo __('Info background color:', 'photo-gallery'); ?> </label></td> 3866 3866 <td> 3867 <input type="text" name="lightbox_info_bg_color" id="lightbox_info_bg_color" value="<?php echo $row->lightbox_info_bg_color; ?>" class="jscolor"/>3867 <input type="text" name="lightbox_info_bg_color" id="lightbox_info_bg_color" value="<?php echo esc_attr($row->lightbox_info_bg_color); ?>" class="jscolor"/> 3868 3868 </td> 3869 3869 </tr> … … 3871 3871 <td class="spider_label"><label for="lightbox_info_bg_transparent"><?php echo __('Info background transparency:', 'photo-gallery'); ?> </label></td> 3872 3872 <td> 3873 <input type="text" name="lightbox_info_bg_transparent" id="lightbox_info_bg_transparent" value="<?php echo $row->lightbox_info_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %3873 <input type="text" name="lightbox_info_bg_transparent" id="lightbox_info_bg_transparent" value="<?php echo esc_attr($row->lightbox_info_bg_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 3874 3874 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 3875 3875 </td> … … 3878 3878 <td class="spider_label"><label for="lightbox_info_border_width"><?php echo __('Info border width:', 'photo-gallery'); ?> </label></td> 3879 3879 <td> 3880 <input type="text" name="lightbox_info_border_width" id="lightbox_info_border_width" value="<?php echo $row->lightbox_info_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3880 <input type="text" name="lightbox_info_border_width" id="lightbox_info_border_width" value="<?php echo esc_attr($row->lightbox_info_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3881 3881 </td> 3882 3882 </tr> … … 3888 3888 foreach ($border_styles as $key => $border_style) { 3889 3889 ?> 3890 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_info_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>3890 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_info_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 3891 3891 <?php 3892 3892 } … … 3898 3898 <td class="spider_label"><label for="lightbox_info_border_color"><?php echo __('Info border color:', 'photo-gallery'); ?> </label></td> 3899 3899 <td> 3900 <input type="text" name="lightbox_info_border_color" id="lightbox_info_border_color" value="<?php echo $row->lightbox_info_border_color; ?>" class="jscolor"/>3900 <input type="text" name="lightbox_info_border_color" id="lightbox_info_border_color" value="<?php echo esc_attr($row->lightbox_info_border_color); ?>" class="jscolor"/> 3901 3901 </td> 3902 3902 </tr> … … 3904 3904 <td class="spider_label"><label for="lightbox_info_border_radius"><?php echo __('Info border radius:', 'photo-gallery'); ?> </label></td> 3905 3905 <td> 3906 <input type="text" name="lightbox_info_border_radius" id="lightbox_info_border_radius" value="<?php echo $row->lightbox_info_border_radius; ?>" class="spider_char_input"/>3906 <input type="text" name="lightbox_info_border_radius" id="lightbox_info_border_radius" value="<?php echo esc_attr($row->lightbox_info_border_radius); ?>" class="spider_char_input"/> 3907 3907 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3908 3908 </td> … … 3911 3911 <td class="spider_label"><label for="lightbox_info_padding"><?php echo __('Info padding:', 'photo-gallery'); ?></label></td> 3912 3912 <td> 3913 <input type="text" name="lightbox_info_padding" id="lightbox_info_padding" value="<?php echo $row->lightbox_info_padding; ?>" class="spider_char_input"/>3913 <input type="text" name="lightbox_info_padding" id="lightbox_info_padding" value="<?php echo esc_attr($row->lightbox_info_padding); ?>" class="spider_char_input"/> 3914 3914 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3915 3915 </td> … … 3918 3918 <td class="spider_label"><label for="lightbox_info_margin"><?php echo __('Info margin:', 'photo-gallery'); ?> </label></td> 3919 3919 <td> 3920 <input type="text" name="lightbox_info_margin" id="lightbox_info_margin" value="<?php echo $row->lightbox_info_margin; ?>" class="spider_char_input"/>3920 <input type="text" name="lightbox_info_margin" id="lightbox_info_margin" value="<?php echo esc_attr($row->lightbox_info_margin); ?>" class="spider_char_input"/> 3921 3921 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 3922 3922 </td> … … 3925 3925 <td class="spider_label"><label for="lightbox_title_color"><?php echo __('Title font color:', 'photo-gallery'); ?> </label></td> 3926 3926 <td> 3927 <input type="text" name="lightbox_title_color" id="lightbox_title_color" value="<?php echo $row->lightbox_title_color; ?>" class="jscolor"/>3927 <input type="text" name="lightbox_title_color" id="lightbox_title_color" value="<?php echo esc_attr($row->lightbox_title_color); ?>" class="jscolor"/> 3928 3928 </td> 3929 3929 </tr> … … 3939 3939 foreach ($font_weights as $key => $font_weight) { 3940 3940 ?> 3941 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>3941 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 3942 3942 <?php 3943 3943 } … … 3950 3950 </td> 3951 3951 <td> 3952 <input type="text" name="lightbox_title_font_size" id="lightbox_title_font_size" value="<?php echo $row->lightbox_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3952 <input type="text" name="lightbox_title_font_size" id="lightbox_title_font_size" value="<?php echo esc_attr($row->lightbox_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3953 3953 </td> 3954 3954 </tr> … … 3956 3956 <td class="spider_label"><label for="lightbox_description_color"><?php echo __('Description font color:', 'photo-gallery'); ?> </label></td> 3957 3957 <td> 3958 <input type="text" name="lightbox_description_color" id="lightbox_description_color" value="<?php echo $row->lightbox_description_color; ?>" class="jscolor"/>3958 <input type="text" name="lightbox_description_color" id="lightbox_description_color" value="<?php echo esc_attr($row->lightbox_description_color); ?>" class="jscolor"/> 3959 3959 </td> 3960 3960 </tr> … … 3970 3970 foreach ($font_weights as $key => $font_weight) { 3971 3971 ?> 3972 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_description_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>3972 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_description_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 3973 3973 <?php 3974 3974 } … … 3981 3981 </td> 3982 3982 <td> 3983 <input type="text" name="lightbox_description_font_size" id="lightbox_description_font_size" value="<?php echo $row->lightbox_description_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3983 <input type="text" name="lightbox_description_font_size" id="lightbox_description_font_size" value="<?php echo esc_attr($row->lightbox_description_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3984 3984 </td> 3985 3985 </tr> … … 3987 3987 <td class="spider_label"><label for="lightbox_comment_width"><?php echo __('Comments Width:', 'photo-gallery'); ?> </label></td> 3988 3988 <td> 3989 <input type="text" name="lightbox_comment_width" id="lightbox_comment_width" value="<?php echo $row->lightbox_comment_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px3989 <input type="text" name="lightbox_comment_width" id="lightbox_comment_width" value="<?php echo esc_attr($row->lightbox_comment_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 3990 3990 </td> 3991 3991 </tr> … … 4002 4002 <td class="spider_label"><label for="lightbox_comment_bg_color"><?php echo __('Comments background color:', 'photo-gallery'); ?> </label></td> 4003 4003 <td> 4004 <input type="text" name="lightbox_comment_bg_color" id="lightbox_comment_bg_color" value="<?php echo $row->lightbox_comment_bg_color; ?>" class="jscolor"/>4004 <input type="text" name="lightbox_comment_bg_color" id="lightbox_comment_bg_color" value="<?php echo esc_attr($row->lightbox_comment_bg_color); ?>" class="jscolor"/> 4005 4005 </td> 4006 4006 </tr> … … 4008 4008 <td class="spider_label"><label for="lightbox_comment_font_size"><?php echo __('Comments font size:', 'photo-gallery'); ?> </label></td> 4009 4009 <td> 4010 <input type="text" name="lightbox_comment_font_size" id="lightbox_comment_font_size" value="<?php echo $row->lightbox_comment_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4010 <input type="text" name="lightbox_comment_font_size" id="lightbox_comment_font_size" value="<?php echo esc_attr($row->lightbox_comment_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4011 4011 </td> 4012 4012 </tr> … … 4014 4014 <td class="spider_label"><label for="lightbox_comment_font_color"><?php echo __('Comments font color:', 'photo-gallery'); ?></label></td> 4015 4015 <td> 4016 <input type="text" name="lightbox_comment_font_color" id="lightbox_comment_font_color" value="<?php echo $row->lightbox_comment_font_color; ?>" class="jscolor"/>4016 <input type="text" name="lightbox_comment_font_color" id="lightbox_comment_font_color" value="<?php echo esc_attr($row->lightbox_comment_font_color); ?>" class="jscolor"/> 4017 4017 </td> 4018 4018 </tr> … … 4025 4025 </td> 4026 4026 <td> 4027 <input type="text" name="lightbox_comment_author_font_size" id="lightbox_comment_author_font_size" value="<?php echo $row->lightbox_comment_author_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4027 <input type="text" name="lightbox_comment_author_font_size" id="lightbox_comment_author_font_size" value="<?php echo esc_attr($row->lightbox_comment_author_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4028 4028 </td> 4029 4029 </tr> … … 4031 4031 <td class="spider_label"><label for="lightbox_comment_date_font_size"><?php echo __('Comments date font size:', 'photo-gallery'); ?> </label></td> 4032 4032 <td> 4033 <input type="text" name="lightbox_comment_date_font_size" id="lightbox_comment_date_font_size" value="<?php echo $row->lightbox_comment_date_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4033 <input type="text" name="lightbox_comment_date_font_size" id="lightbox_comment_date_font_size" value="<?php echo esc_attr($row->lightbox_comment_date_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4034 4034 </td> 4035 4035 </tr> … … 4037 4037 <td class="spider_label"><label for="lightbox_comment_body_font_size"><?php echo __('Comments body font size:', 'photo-gallery'); ?> </label></td> 4038 4038 <td> 4039 <input type="text" name="lightbox_comment_body_font_size" id="lightbox_comment_body_font_size" value="<?php echo $row->lightbox_comment_body_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4039 <input type="text" name="lightbox_comment_body_font_size" id="lightbox_comment_body_font_size" value="<?php echo esc_attr($row->lightbox_comment_body_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4040 4040 </td> 4041 4041 </tr> … … 4043 4043 <td class="spider_label"><label for="lightbox_comment_input_border_width"><?php echo __('Comment input border width:', 'photo-gallery'); ?> </label></td> 4044 4044 <td> 4045 <input type="text" name="lightbox_comment_input_border_width" id="lightbox_comment_input_border_width" value="<?php echo $row->lightbox_comment_input_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4045 <input type="text" name="lightbox_comment_input_border_width" id="lightbox_comment_input_border_width" value="<?php echo esc_attr($row->lightbox_comment_input_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4046 4046 </td> 4047 4047 </tr> … … 4053 4053 foreach ($border_styles as $key => $border_style) { 4054 4054 ?> 4055 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_comment_input_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>4055 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_comment_input_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 4056 4056 <?php 4057 4057 } … … 4063 4063 <td class="spider_label"><label for="lightbox_comment_input_border_color"><?php echo __('Comment input border color:', 'photo-gallery'); ?> </label></td> 4064 4064 <td> 4065 <input type="text" name="lightbox_comment_input_border_color" id="lightbox_comment_input_border_color" value="<?php echo $row->lightbox_comment_input_border_color; ?>" class="jscolor"/>4065 <input type="text" name="lightbox_comment_input_border_color" id="lightbox_comment_input_border_color" value="<?php echo esc_attr($row->lightbox_comment_input_border_color); ?>" class="jscolor"/> 4066 4066 </td> 4067 4067 </tr> … … 4069 4069 <td class="spider_label"><label for="lightbox_comment_input_border_radius"><?php echo __('Comment input border radius:', 'photo-gallery'); ?> </label></td> 4070 4070 <td> 4071 <input type="text" name="lightbox_comment_input_border_radius" id="lightbox_comment_input_border_radius" value="<?php echo $row->lightbox_comment_input_border_radius; ?>" class="spider_char_input"/>4071 <input type="text" name="lightbox_comment_input_border_radius" id="lightbox_comment_input_border_radius" value="<?php echo esc_attr($row->lightbox_comment_input_border_radius); ?>" class="spider_char_input"/> 4072 4072 </td> 4073 4073 </tr> … … 4075 4075 <td class="spider_label"><label for="lightbox_comment_input_padding"><?php echo __('Comment input padding:', 'photo-gallery'); ?> </label></td> 4076 4076 <td> 4077 <input type="text" name="lightbox_comment_input_padding" id="lightbox_comment_input_padding" value="<?php echo $row->lightbox_comment_input_padding; ?>" class="spider_char_input"/>4077 <input type="text" name="lightbox_comment_input_padding" id="lightbox_comment_input_padding" value="<?php echo esc_attr($row->lightbox_comment_input_padding); ?>" class="spider_char_input"/> 4078 4078 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4079 4079 </td> … … 4082 4082 <td class="spider_label"><label for="lightbox_comment_input_bg_color"><?php echo __('Comment input background color:', 'photo-gallery'); ?> </label></td> 4083 4083 <td> 4084 <input type="text" name="lightbox_comment_input_bg_color" id="lightbox_comment_input_bg_color" value="<?php echo $row->lightbox_comment_input_bg_color; ?>" class="jscolor"/>4084 <input type="text" name="lightbox_comment_input_bg_color" id="lightbox_comment_input_bg_color" value="<?php echo esc_attr($row->lightbox_comment_input_bg_color); ?>" class="jscolor"/> 4085 4085 </td> 4086 4086 </tr> … … 4088 4088 <td class="spider_label"><label for="lightbox_comment_button_bg_color"><?php echo __('Comment button background color:', 'photo-gallery'); ?> </label></td> 4089 4089 <td> 4090 <input type="text" name="lightbox_comment_button_bg_color" id="lightbox_comment_button_bg_color" value="<?php echo $row->lightbox_comment_button_bg_color; ?>" class="jscolor"/>4090 <input type="text" name="lightbox_comment_button_bg_color" id="lightbox_comment_button_bg_color" value="<?php echo esc_attr($row->lightbox_comment_button_bg_color); ?>" class="jscolor"/> 4091 4091 </td> 4092 4092 </tr> … … 4094 4094 <td class="spider_label"><label for="lightbox_comment_button_padding"><?php echo __('Comment button padding:', 'photo-gallery'); ?> </label></td> 4095 4095 <td> 4096 <input type="text" name="lightbox_comment_button_padding" id="lightbox_comment_button_padding" value="<?php echo $row->lightbox_comment_button_padding; ?>" class="spider_char_input"/>4096 <input type="text" name="lightbox_comment_button_padding" id="lightbox_comment_button_padding" value="<?php echo esc_attr($row->lightbox_comment_button_padding); ?>" class="spider_char_input"/> 4097 4097 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4098 4098 </td> … … 4101 4101 <td class="spider_label"><label for="lightbox_comment_button_border_width"><?php echo __('Comment button border width:', 'photo-gallery'); ?> </label></td> 4102 4102 <td> 4103 <input type="text" name="lightbox_comment_button_border_width" id="lightbox_comment_button_border_width" value="<?php echo $row->lightbox_comment_button_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4103 <input type="text" name="lightbox_comment_button_border_width" id="lightbox_comment_button_border_width" value="<?php echo esc_attr($row->lightbox_comment_button_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4104 4104 </td> 4105 4105 </tr> … … 4111 4111 foreach ($border_styles as $key => $border_style) { 4112 4112 ?> 4113 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_comment_button_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>4113 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_comment_button_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 4114 4114 <?php 4115 4115 } … … 4121 4121 <td class="spider_label"><label for="lightbox_comment_button_border_color"><?php echo __('Comment button border color:', 'photo-gallery'); ?> </label></td> 4122 4122 <td> 4123 <input type="text" name="lightbox_comment_button_border_color" id="lightbox_comment_button_border_color" value="<?php echo $row->lightbox_comment_button_border_color; ?>" class="jscolor"/>4123 <input type="text" name="lightbox_comment_button_border_color" id="lightbox_comment_button_border_color" value="<?php echo esc_attr($row->lightbox_comment_button_border_color); ?>" class="jscolor"/> 4124 4124 </td> 4125 4125 </tr> … … 4127 4127 <td class="spider_label"><label for="lightbox_comment_button_border_radius">C<?php echo __('omment button border radius:', 'photo-gallery'); ?> </label></td> 4128 4128 <td> 4129 <input type="text" name="lightbox_comment_button_border_radius" id="lightbox_comment_button_border_radius" value="<?php echo $row->lightbox_comment_button_border_radius; ?>" class="spider_char_input" />4129 <input type="text" name="lightbox_comment_button_border_radius" id="lightbox_comment_button_border_radius" value="<?php echo esc_attr($row->lightbox_comment_button_border_radius); ?>" class="spider_char_input" /> 4130 4130 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4131 4131 </td> … … 4134 4134 <td class="spider_label"><label for="lightbox_comment_separator_width"><?php echo __('Comment separator width:', 'photo-gallery'); ?> </label></td> 4135 4135 <td> 4136 <input type="text" name="lightbox_comment_separator_width" id="lightbox_comment_separator_width" value="<?php echo $row->lightbox_comment_separator_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4136 <input type="text" name="lightbox_comment_separator_width" id="lightbox_comment_separator_width" value="<?php echo esc_attr($row->lightbox_comment_separator_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4137 4137 </td> 4138 4138 </tr> … … 4144 4144 foreach ($border_styles as $key => $border_style) { 4145 4145 ?> 4146 <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_comment_separator_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>4146 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->lightbox_comment_separator_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 4147 4147 <?php 4148 4148 } … … 4154 4154 <td class="spider_label"><label for="lightbox_comment_separator_color"><?php echo __('Comment separator color:', 'photo-gallery'); ?> </label></td> 4155 4155 <td> 4156 <input type="text" name="lightbox_comment_separator_color" id="lightbox_comment_separator_color" value="<?php echo $row->lightbox_comment_separator_color; ?>" class="jscolor"/>4156 <input type="text" name="lightbox_comment_separator_color" id="lightbox_comment_separator_color" value="<?php echo esc_attr($row->lightbox_comment_separator_color); ?>" class="jscolor"/> 4157 4157 </td> 4158 4158 </tr> … … 4174 4174 <td class="spider_label"><label for="page_nav_font_size"><?php echo __('Font size:', 'photo-gallery'); ?> </label></td> 4175 4175 <td> 4176 <input type="text" name="page_nav_font_size" id="page_nav_font_size" value="<?php echo $row->page_nav_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4176 <input type="text" name="page_nav_font_size" id="page_nav_font_size" value="<?php echo esc_attr($row->page_nav_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4177 4177 </td> 4178 4178 </tr> … … 4180 4180 <td class="spider_label"><label for="page_nav_font_color"><?php echo __('Font color:', 'photo-gallery'); ?> </label></td> 4181 4181 <td> 4182 <input type="text" name="page_nav_font_color" id="page_nav_font_color" value="<?php echo $row->page_nav_font_color; ?>" class="jscolor"/>4182 <input type="text" name="page_nav_font_color" id="page_nav_font_color" value="<?php echo esc_attr($row->page_nav_font_color); ?>" class="jscolor"/> 4183 4183 </td> 4184 4184 </tr> … … 4194 4194 foreach ($font_weights as $key => $font_weight) { 4195 4195 ?> 4196 <option value="<?php echo $key; ?>" <?php echo (($row->page_nav_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>4196 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->page_nav_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 4197 4197 <?php 4198 4198 } … … 4204 4204 <td class="spider_label"><label for="page_nav_border_width"><?php echo __('Border width:', 'photo-gallery'); ?> </label></td> 4205 4205 <td> 4206 <input type="text" name="page_nav_border_width" id="page_nav_border_width" value="<?php echo $row->page_nav_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4206 <input type="text" name="page_nav_border_width" id="page_nav_border_width" value="<?php echo esc_attr($row->page_nav_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4207 4207 </td> 4208 4208 </tr> … … 4214 4214 foreach ($border_styles as $key => $border_style) { 4215 4215 ?> 4216 <option value="<?php echo $key; ?>" <?php echo (($row->page_nav_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>4216 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->page_nav_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 4217 4217 <?php 4218 4218 } … … 4224 4224 <td class="spider_label"><label for="page_nav_border_color"><?php echo __('Border color:', 'photo-gallery'); ?></label></td> 4225 4225 <td> 4226 <input type="text" name="page_nav_border_color" id="page_nav_border_color" value="<?php echo $row->page_nav_border_color; ?>" class="jscolor"/>4226 <input type="text" name="page_nav_border_color" id="page_nav_border_color" value="<?php echo esc_attr($row->page_nav_border_color); ?>" class="jscolor"/> 4227 4227 </td> 4228 4228 </tr> … … 4230 4230 <td class="spider_label"><label for="page_nav_border_radius"><?php echo __('Border radius:', 'photo-gallery'); ?> </label></td> 4231 4231 <td> 4232 <input type="text" name="page_nav_border_radius" id="page_nav_border_radius" value="<?php echo $row->page_nav_border_radius; ?>" class="spider_char_input"/>4232 <input type="text" name="page_nav_border_radius" id="page_nav_border_radius" value="<?php echo esc_attr($row->page_nav_border_radius); ?>" class="spider_char_input"/> 4233 4233 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4234 4234 </td> … … 4247 4247 <td class="spider_label"><label for="page_nav_margin"><?php echo __('Margin:', 'photo-gallery'); ?> </label></td> 4248 4248 <td> 4249 <input type="text" name="page_nav_margin" id="page_nav_margin" value="<?php echo $row->page_nav_margin; ?>" class="spider_char_input"/>4249 <input type="text" name="page_nav_margin" id="page_nav_margin" value="<?php echo esc_attr($row->page_nav_margin); ?>" class="spider_char_input"/> 4250 4250 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4251 4251 </td> … … 4254 4254 <td class="spider_label"><label for="page_nav_padding"><?php echo __('Padding:', 'photo-gallery'); ?> </label></td> 4255 4255 <td> 4256 <input type="text" name="page_nav_padding" id="page_nav_padding" value="<?php echo $row->page_nav_padding; ?>" class="spider_char_input"/>4256 <input type="text" name="page_nav_padding" id="page_nav_padding" value="<?php echo esc_attr($row->page_nav_padding); ?>" class="spider_char_input"/> 4257 4257 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4258 4258 </td> … … 4261 4261 <td class="spider_label"><label for="page_nav_button_bg_color"><?php echo __('Button background color:', 'photo-gallery'); ?> </label></td> 4262 4262 <td> 4263 <input type="text" name="page_nav_button_bg_color" id="page_nav_button_bg_color" value="<?php echo $row->page_nav_button_bg_color; ?>" class="jscolor" />4263 <input type="text" name="page_nav_button_bg_color" id="page_nav_button_bg_color" value="<?php echo esc_attr($row->page_nav_button_bg_color); ?>" class="jscolor" /> 4264 4264 </td> 4265 4265 </tr> … … 4267 4267 <td class="spider_label"><label for="page_nav_button_bg_transparent"><?php echo __('Button background transparency:', 'photo-gallery'); ?> </label></td> 4268 4268 <td> 4269 <input type="text" name="page_nav_button_bg_transparent" id="page_nav_button_bg_transparent" value="<?php echo $row->page_nav_button_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %4269 <input type="text" name="page_nav_button_bg_transparent" id="page_nav_button_bg_transparent" value="<?php echo esc_attr($row->page_nav_button_bg_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 4270 4270 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 4271 4271 </td> … … 4283 4283 <td class="spider_label"><label for="page_nav_box_shadow"><?php echo __('Box shadow:', 'photo-gallery'); ?> </label></td> 4284 4284 <td> 4285 <input type="text" name="page_nav_box_shadow" id="page_nav_box_shadow" value="<?php echo $row->page_nav_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />4285 <input type="text" name="page_nav_box_shadow" id="page_nav_box_shadow" value="<?php echo esc_attr($row->page_nav_box_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 4286 4286 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4287 4287 </td> … … 4313 4313 foreach ($aligns as $key => $align) { 4314 4314 ?> 4315 <option value="<?php echo $key; ?>" <?php echo (($row->page_nav_align == $key) ? 'selected="selected"' : ''); ?>><?php echo__($align, 'photo-gallery'); ?></option>4315 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->page_nav_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 4316 4316 <?php 4317 4317 } … … 4356 4356 <td class="spider_label"><label for="carousel_cont_bg_color"><?php echo __('Background color:', 'photo-gallery'); ?> </label></td> 4357 4357 <td> 4358 <input type="text" name="carousel_cont_bg_color" id="carousel_cont_bg_color" value="<?php echo $row->carousel_cont_bg_color; ?>" class="jscolor"/>4358 <input type="text" name="carousel_cont_bg_color" id="carousel_cont_bg_color" value="<?php echo esc_attr($row->carousel_cont_bg_color); ?>" class="jscolor"/> 4359 4359 </td> 4360 4360 </tr> … … 4362 4362 <td class="spider_label"><label for="carousel_cont_btn_transparent"><?php echo __('Container opacity:', 'photo-gallery'); ?> </label></td> 4363 4363 <td> 4364 <input type="text" name="carousel_cont_btn_transparent" id="carousel_cont_btn_transparent" value="<?php echo $row->carousel_cont_btn_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %4364 <input type="text" name="carousel_cont_btn_transparent" id="carousel_cont_btn_transparent" value="<?php echo esc_attr($row->carousel_cont_btn_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 4365 4365 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 4366 4366 </td> … … 4369 4369 <td class="spider_label"><label for="carousel_rl_btn_size"><?php echo __('Right, left buttons size:', 'photo-gallery'); ?> </label></td> 4370 4370 <td> 4371 <input type="text" name="carousel_rl_btn_size" id="carousel_rl_btn_size" value="<?php echo $row->carousel_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4371 <input type="text" name="carousel_rl_btn_size" id="carousel_rl_btn_size" value="<?php echo esc_attr($row->carousel_rl_btn_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4372 4372 </td> 4373 4373 </tr> … … 4375 4375 <td class="spider_label"><label for="carousel_play_pause_btn_size"><?php echo __('Play, pause buttons size:', 'photo-gallery'); ?> </label></td> 4376 4376 <td> 4377 <input type="text" name="carousel_play_pause_btn_size" id="carousel_play_pause_btn_size" value="<?php echo $row->carousel_play_pause_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4377 <input type="text" name="carousel_play_pause_btn_size" id="carousel_play_pause_btn_size" value="<?php echo esc_attr($row->carousel_play_pause_btn_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4378 4378 </td> 4379 4379 </tr> … … 4381 4381 <td class="spider_label"><label for="carousel_rl_btn_color"><?php echo __('Buttons color:', 'photo-gallery'); ?> </label></td> 4382 4382 <td> 4383 <input type="text" name="carousel_rl_btn_color" id="carousel_rl_btn_color" value="<?php echo $row->carousel_rl_btn_color; ?>" class="jscolor"/>4383 <input type="text" name="carousel_rl_btn_color" id="carousel_rl_btn_color" value="<?php echo esc_attr($row->carousel_rl_btn_color); ?>" class="jscolor"/> 4384 4384 </td> 4385 4385 </tr> … … 4387 4387 <td class="spider_label"><label for="carousel_close_btn_transparent"><?php echo __('Buttons transparency:', 'photo-gallery'); ?> </label></td> 4388 4388 <td> 4389 <input type="text" name="carousel_close_btn_transparent" id="carousel_close_btn_transparent" value="<?php echo $row->carousel_close_btn_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %4389 <input type="text" name="carousel_close_btn_transparent" id="carousel_close_btn_transparent" value="<?php echo esc_attr($row->carousel_close_btn_transparent); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 4390 4390 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 4391 4391 </td> … … 4394 4394 <td class="spider_label"><label for="carousel_close_rl_btn_hover_color"><?php echo __('Buttons hover color:', 'photo-gallery'); ?> </label></td> 4395 4395 <td> 4396 <input type="text" name="carousel_close_rl_btn_hover_color" id="carousel_close_rl_btn_hover_color" value="<?php echo $row->carousel_close_rl_btn_hover_color; ?>" class="jscolor"/>4396 <input type="text" name="carousel_close_rl_btn_hover_color" id="carousel_close_rl_btn_hover_color" value="<?php echo esc_attr($row->carousel_close_rl_btn_hover_color); ?>" class="jscolor"/> 4397 4397 </td> 4398 4398 </tr> … … 4400 4400 <td class="spider_label"><label for="carousel_rl_btn_width"><?php echo __('Right, left buttons width:', 'photo-gallery'); ?> </label></td> 4401 4401 <td> 4402 <input type="text" name="carousel_rl_btn_width" id="carousel_rl_btn_width" value="<?php echo $row->carousel_rl_btn_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4402 <input type="text" name="carousel_rl_btn_width" id="carousel_rl_btn_width" value="<?php echo esc_attr($row->carousel_rl_btn_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4403 4403 </td> 4404 4404 </tr> … … 4406 4406 <td class="spider_label"><label for="carousel_rl_btn_height"><?php echo __('Right, left buttons height:', 'photo-gallery'); ?> </label></td> 4407 4407 <td> 4408 <input type="text" name="carousel_rl_btn_height" id="slideshow_rl_btn_height" value="<?php echo $row->carousel_rl_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4408 <input type="text" name="carousel_rl_btn_height" id="slideshow_rl_btn_height" value="<?php echo esc_attr($row->carousel_rl_btn_height); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4409 4409 </td> 4410 4410 </tr> … … 4412 4412 <td class="spider_label"><label for="carousel_rl_btn_bg_color"><?php echo __('Right, left buttons background color:', 'photo-gallery'); ?> </label></td> 4413 4413 <td> 4414 <input type="text" name="carousel_rl_btn_bg_color" id="carousel_rl_btn_bg_color" value="<?php echo $row->carousel_rl_btn_bg_color; ?>" class="jscolor"/>4414 <input type="text" name="carousel_rl_btn_bg_color" id="carousel_rl_btn_bg_color" value="<?php echo esc_attr($row->carousel_rl_btn_bg_color); ?>" class="jscolor"/> 4415 4415 </td> 4416 4416 </tr> … … 4418 4418 <td class="spider_label"><label for="carousel_rl_btn_border_width"><?php echo __('Right, left buttons border width:', 'photo-gallery'); ?> </label></td> 4419 4419 <td> 4420 <input type="text" name="carousel_rl_btn_border_width" id="carousel_rl_btn_border_width" value="<?php echo $row->carousel_rl_btn_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4420 <input type="text" name="carousel_rl_btn_border_width" id="carousel_rl_btn_border_width" value="<?php echo esc_attr($row->carousel_rl_btn_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4421 4421 </td> 4422 4422 </tr> … … 4428 4428 foreach ($border_styles as $key => $border_style) { 4429 4429 ?> 4430 <option value="<?php echo $key; ?>" <?php echo (($row->carousel_rl_btn_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>4430 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->carousel_rl_btn_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 4431 4431 <?php 4432 4432 } … … 4438 4438 <td class="spider_label"><label for="carousel_rl_btn_border_color"><?php echo __('Right, left buttons border color:', 'photo-gallery'); ?> </label></td> 4439 4439 <td> 4440 <input type="text" name="carousel_rl_btn_border_color" id="slideshow_rl_btn_border_color" value="<?php echo $row->carousel_rl_btn_border_color; ?>" class="jscolor"/>4440 <input type="text" name="carousel_rl_btn_border_color" id="slideshow_rl_btn_border_color" value="<?php echo esc_attr($row->carousel_rl_btn_border_color); ?>" class="jscolor"/> 4441 4441 </td> 4442 4442 </tr> … … 4444 4444 <td class="spider_label"><label for="carousel_rl_btn_border_radius"><?php echo __('Right, left buttons border radius:', 'photo-gallery'); ?> </label></td> 4445 4445 <td> 4446 <input type="text" name="carousel_rl_btn_border_radius" id="carousel_rl_btn_border_radius" value="<?php echo $row->carousel_rl_btn_border_radius; ?>" class="spider_char_input"/>4446 <input type="text" name="carousel_rl_btn_border_radius" id="carousel_rl_btn_border_radius" value="<?php echo esc_attr($row->carousel_rl_btn_border_radius); ?>" class="spider_char_input"/> 4447 4447 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4448 4448 </td> … … 4455 4455 foreach ($button_styles as $key => $button_style) { 4456 4456 ?> 4457 <option value="<?php echo $key; ?>" <?php echo (($row->carousel_rl_btn_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($button_style, 'photo-gallery'); ?></option>4457 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->carousel_rl_btn_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($button_style, 'photo-gallery'); ?></option> 4458 4458 <?php 4459 4459 } … … 4475 4475 <td class="spider_label"><label for="carousel_mergin_bottom"><?php echo __('Carousel margin:', 'photo-gallery'); ?> </label></td> 4476 4476 <td> 4477 <input type="text" name="carousel_mergin_bottom" id="carousel_mergin_bottom" value="<?php echo $row->carousel_mergin_bottom; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4477 <input type="text" name="carousel_mergin_bottom" id="carousel_mergin_bottom" value="<?php echo esc_attr($row->carousel_mergin_bottom); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4478 4478 </td> 4479 4479 </tr> … … 4481 4481 <td class="spider_label"><label for="carousel_feature_border_width"><?php echo __('Image border width:', 'photo-gallery'); ?> </label></td> 4482 4482 <td> 4483 <input type="text" name="carousel_feature_border_width" id="carousel_feature_border_width" value="<?php echo $row->carousel_feature_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/>px4483 <input type="text" name="carousel_feature_border_width" id="carousel_feature_border_width" value="<?php echo esc_attr($row->carousel_feature_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/>px 4484 4484 </td> 4485 4485 </tr> … … 4493 4493 foreach ($border_styles as $key => $border_style) { 4494 4494 ?> 4495 <option value="<?php echo $key; ?>" <?php echo (($row->carousel_feature_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>4495 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->carousel_feature_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 4496 4496 <?php 4497 4497 } … … 4503 4503 <td class="spider_label"><label for="carousel_feature_border_color"><?php echo __('Image border color:', 'photo-gallery'); ?> </label></td> 4504 4504 <td> 4505 <input type="text" name="carousel_feature_border_color" id="carousel_feature_border_color" value="<?php echo $row->carousel_feature_border_color; ?>" class="jscolor"/>4505 <input type="text" name="carousel_feature_border_color" id="carousel_feature_border_color" value="<?php echo esc_attr($row->carousel_feature_border_color); ?>" class="jscolor"/> 4506 4506 </td> 4507 4507 </tr> … … 4519 4519 <td class="spider_label"><label for="carousel_caption_background_color"><?php echo __('Title background color:', 'photo-gallery'); ?> </label></td> 4520 4520 <td> 4521 <input type="text" name="carousel_caption_background_color" id="carousel_caption_background_color" value="<?php echo $row->carousel_caption_background_color; ?>" class="jscolor"/>4521 <input type="text" name="carousel_caption_background_color" id="carousel_caption_background_color" value="<?php echo esc_attr($row->carousel_caption_background_color); ?>" class="jscolor"/> 4522 4522 </td> 4523 4523 </tr> … … 4526 4526 <td class="spider_label"><label for="carousel_title_opacity"><?php echo __('Title opacity:', 'photo-gallery'); ?> </label></td> 4527 4527 <td> 4528 <input type="text" name="carousel_title_opacity" id="carousel_title_opacity" value="<?php echo $row->carousel_title_opacity; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %4528 <input type="text" name="carousel_title_opacity" id="carousel_title_opacity" value="<?php echo esc_attr($row->carousel_title_opacity); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> % 4529 4529 <div class="spider_description"><?php echo __('Value must be between 0 to 100.', 'photo-gallery'); ?></div> 4530 4530 </td> … … 4533 4533 <td class="spider_label"><label for="carousel_title_border_radius"><?php echo __('Title border radius:', 'photo-gallery'); ?> </label></td> 4534 4534 <td> 4535 <input type="text" name="carousel_title_border_radius" id="carousel_title_border_radius" value="<?php echo $row->carousel_title_border_radius; ?>" class="spider_char_input"/>4535 <input type="text" name="carousel_title_border_radius" id="carousel_title_border_radius" value="<?php echo esc_attr($row->carousel_title_border_radius); ?>" class="spider_char_input"/> 4536 4536 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4537 4537 </td> … … 4540 4540 <td class="spider_label"><label for="carousel_caption_p_mergin"><?php echo __('Title margin:', 'photo-gallery'); ?> </label></td> 4541 4541 <td> 4542 <input type="text" name="carousel_caption_p_mergin" id="carousel_caption_p_mergin" value="<?php echo $row->carousel_caption_p_mergin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px4542 <input type="text" name="carousel_caption_p_mergin" id="carousel_caption_p_mergin" value="<?php echo esc_attr($row->carousel_caption_p_mergin); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px 4543 4543 </td> 4544 4544 </tr> … … 4546 4546 <td class="spider_label"><label for="carousel_caption_p_pedding"><?php echo __('Title padding:', 'photo-gallery'); ?> </label></td> 4547 4547 <td> 4548 <input type="text" name="carousel_caption_p_pedding" id="carousel_caption_p_pedding" value="<?php echo $row->carousel_caption_p_pedding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px4548 <input type="text" name="carousel_caption_p_pedding" id="carousel_caption_p_pedding" value="<?php echo esc_attr($row->carousel_caption_p_pedding); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px 4549 4549 </td> 4550 4550 </tr> … … 4556 4556 <td class="spider_label"><label for="carousel_caption_p_font_size"><?php echo __('Title font size:', 'photo-gallery'); ?> </label></td> 4557 4557 <td> 4558 <input type="text" name="carousel_caption_p_font_size" id="carousel_caption_p_font_size" value="<?php echo $row->carousel_caption_p_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px4558 <input type="text" name="carousel_caption_p_font_size" id="carousel_caption_p_font_size" value="<?php echo esc_attr($row->carousel_caption_p_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px 4559 4559 </td> 4560 4560 </tr> … … 4562 4562 <td class="spider_label"><label for="carousel_caption_p_color"><?php echo __('Title color:', 'photo-gallery'); ?> </label></td> 4563 4563 <td> 4564 <input type="text" name="carousel_caption_p_color" id="carousel_caption_p_color" value="<?php echo $row->carousel_caption_p_color; ?>" class="jscolor"/>4564 <input type="text" name="carousel_caption_p_color" id="carousel_caption_p_color" value="<?php echo esc_attr($row->carousel_caption_p_color); ?>" class="jscolor"/> 4565 4565 </td> 4566 4566 </tr> … … 4572 4572 foreach ($font_weights as $key => $font_weight) { 4573 4573 ?> 4574 <option value="<?php echo $key; ?>" <?php echo (($row->carousel_caption_p_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>4574 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->carousel_caption_p_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 4575 4575 <?php 4576 4576 } … … 4583 4583 <td> 4584 4584 <input type="text" name="carousel_gal_title_font_size" id="carousel_gal_title_font_size" value="<?php echo 4585 $row->carousel_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4585 esc_attr($row->carousel_gal_title_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4586 4586 </td> 4587 4587 </tr> … … 4589 4589 <td class="spider_label"><label for="carousel_gal_title_font_color"><?php echo __('Gallery title/description font color:', 'photo-gallery'); ?> </label></td> 4590 4590 <td> 4591 <input type="text" name="carousel_gal_title_font_color" id="carousel_gal_title_font_color" value="<?php echo $row->carousel_gal_title_font_color; ?>" class="jscolor" />4591 <input type="text" name="carousel_gal_title_font_color" id="carousel_gal_title_font_color" value="<?php echo esc_attr($row->carousel_gal_title_font_color); ?>" class="jscolor" /> 4592 4592 </td> 4593 4593 </tr> … … 4603 4603 foreach ($font_weights as $key => $font_weight) { 4604 4604 ?> 4605 <option value="<?php echo $key; ?>" <?php echo (($row->carousel_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>4605 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->carousel_gal_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 4606 4606 <?php 4607 4607 } … … 4613 4613 <td class="spider_label"><label for="carousel_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', 'photo-gallery'); ?> </label></td> 4614 4614 <td> 4615 <input type="text" name="carousel_gal_title_shadow" id="carousel_gal_title_shadow" value="<?php echo $row->carousel_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />4615 <input type="text" name="carousel_gal_title_shadow" id="carousel_gal_title_shadow" value="<?php echo esc_attr($row->carousel_gal_title_shadow); ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" /> 4616 4616 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4617 4617 </td> … … 4620 4620 <td class="spider_label"><label for="carousel_gal_title_margin"><?php echo __('Gallery title/description margin:', 'photo-gallery'); ?> </label></td> 4621 4621 <td> 4622 <input type="text" name="carousel_gal_title_margin" id="carousel_gal_title_margin" value="<?php echo $row->carousel_gal_title_margin; ?>" class="spider_char_input" />4622 <input type="text" name="carousel_gal_title_margin" id="carousel_gal_title_margin" value="<?php echo esc_attr($row->carousel_gal_title_margin); ?>" class="spider_char_input" /> 4623 4623 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4624 4624 </td> … … 4631 4631 foreach ($aligns as $key => $align) { 4632 4632 ?> 4633 <option value="<?php echo $key; ?>" <?php echo (($row->carousel_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo _e($align, 'photo-gallery'); ?></option>4633 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->carousel_gal_title_align == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($align, 'photo-gallery'); ?></option> 4634 4634 <?php 4635 4635 } … … 4674 4674 <td class="spider_label"><label for="tags_but_font_size"><?php echo __('Font size:', 'photo-gallery'); ?> </label></td> 4675 4675 <td> 4676 <input type="text" name="tags_but_font_size" id="tags_but_font_size" value="<?php echo $row->tags_but_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4676 <input type="text" name="tags_but_font_size" id="tags_but_font_size" value="<?php echo esc_attr($row->tags_but_font_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4677 4677 </td> 4678 4678 </tr> 4679 4679 <tr> 4680 4680 <td class="spider_label"><label for="tags_but_font_color"><?php echo __('Font color:', 'photo-gallery'); ?> </label></td> 4681 <td><input type="text" name="tags_but_font_color" id="tags_but_font_color" value="<?php echo $row->tags_but_font_color; ?>" class="jscolor"/></td>4681 <td><input type="text" name="tags_but_font_color" id="tags_but_font_color" value="<?php echo esc_attr($row->tags_but_font_color); ?>" class="jscolor"/></td> 4682 4682 </tr> 4683 4683 <tr> … … 4690 4690 <select name="tags_but_font_weight" id="tags_but_font_weight"> 4691 4691 <?php foreach ($font_weights as $key => $font_weight) { ?> 4692 <option value="<?php echo $key; ?>" <?php echo (($row->tags_but_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo__($font_weight, 'photo-gallery'); ?></option>4692 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->tags_but_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($font_weight, 'photo-gallery'); ?></option> 4693 4693 <?php } ?> 4694 4694 </select> … … 4698 4698 <td class="spider_label"><label for="tags_but_margin"><?php echo __('Margin:', 'photo-gallery'); ?> </label></td> 4699 4699 <td> 4700 <input type="text" name="tags_but_margin" id="tags_but_margin" value="<?php echo $row->tags_but_margin; ?>" class="spider_char_input"/>4700 <input type="text" name="tags_but_margin" id="tags_but_margin" value="<?php echo esc_attr($row->tags_but_margin); ?>" class="spider_char_input"/> 4701 4701 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4702 4702 </td> … … 4705 4705 <td class="spider_label"><label for="tags_but_padding"><?php echo __('Padding:', 'photo-gallery'); ?> </label></td> 4706 4706 <td> 4707 <input type="text" name="tags_but_padding" id="tags_but_padding" value="<?php echo $row->tags_but_padding; ?>" class="spider_char_input"/>4707 <input type="text" name="tags_but_padding" id="tags_but_padding" value="<?php echo esc_attr($row->tags_but_padding); ?>" class="spider_char_input"/> 4708 4708 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4709 4709 </td> … … 4712 4712 <td class="spider_label"><label for="tags_but_border_width"><?php echo __('Border width:', 'photo-gallery'); ?> </label></td> 4713 4713 <td> 4714 <input type="text" name="tags_but_border_width" id="tags_but_border_width" value="<?php echo $row->tags_but_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4714 <input type="text" name="tags_but_border_width" id="tags_but_border_width" value="<?php echo esc_attr($row->tags_but_border_width); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4715 4715 </td> 4716 4716 </tr> … … 4720 4720 <select name="tags_but_border_style" id="tags_but_border_style"> 4721 4721 <?php foreach ($border_styles as $key => $border_style) { ?> 4722 <option value="<?php echo $key; ?>" <?php echo (($row->tags_but_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>4722 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->tags_but_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 4723 4723 <?php } ?> 4724 4724 </select> … … 4727 4727 <tr> 4728 4728 <td class="spider_label"><label for="tags_but_border_color"><?php echo __('Border color:', 'photo-gallery'); ?></label></td> 4729 <td><input type="text" name="tags_but_border_color" id="tags_but_border_color" value="<?php echo $row->tags_but_border_color; ?>" class="jscolor"/></td>4729 <td><input type="text" name="tags_but_border_color" id="tags_but_border_color" value="<?php echo esc_attr($row->tags_but_border_color); ?>" class="jscolor"/></td> 4730 4730 </tr> 4731 4731 <tr> 4732 4732 <td class="spider_label"><label for="tags_but_border_radius"><?php echo __('Border radius:', 'photo-gallery'); ?> </label></td> 4733 4733 <td> 4734 <input type="text" name="tags_but_border_radius" id="tags_but_border_radius" value="<?php echo $row->tags_but_border_radius; ?>" class="spider_char_input"/>4734 <input type="text" name="tags_but_border_radius" id="tags_but_border_radius" value="<?php echo esc_attr($row->tags_but_border_radius); ?>" class="spider_char_input"/> 4735 4735 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4736 4736 </td> … … 4738 4738 <tr> 4739 4739 <td class="spider_label"><label for="tags_but_bg_color"><?php echo __('Button background color:', 'photo-gallery'); ?> </label></td> 4740 <td><input type="text" name="tags_but_bg_color" id="tags_but_bg_color" value="<?php echo $row->tags_but_bg_color; ?>" class="jscolor" /></td>4740 <td><input type="text" name="tags_but_bg_color" id="tags_but_bg_color" value="<?php echo esc_attr($row->tags_but_bg_color); ?>" class="jscolor" /></td> 4741 4741 </tr> 4742 4742 <tr> 4743 4743 <td class="spider_label"><label for="tags_but_active_bg_color"><?php echo __('Active Button background color:', 'photo-gallery'); ?> </label></td> 4744 <td><input type="text" name="tags_but_active_bg_color" id="tags_but_active_bg_color" value="<?php echo $row->tags_but_active_bg_color; ?>" class="jscolor" /></td>4744 <td><input type="text" name="tags_but_active_bg_color" id="tags_but_active_bg_color" value="<?php echo esc_attr($row->tags_but_active_bg_color); ?>" class="jscolor" /></td> 4745 4745 </tr> 4746 4746 <tr> 4747 4747 <td class="spider_label"><label for="tags_but_active_color"><?php echo __('Active Button font color:', 'photo-gallery'); ?> </label></td> 4748 <td><input type="text" name="tags_but_active_color" id="tags_but_active_color" value="<?php echo $row->tags_but_active_color; ?>" class="jscolor" /></td>4748 <td><input type="text" name="tags_but_active_color" id="tags_but_active_color" value="<?php echo esc_attr($row->tags_but_active_color); ?>" class="jscolor" /></td> 4749 4749 </tr> 4750 4750 <tr> 4751 4751 <td class="spider_label"><label for="tags_but_see_all_size"><?php echo __('See All Button Font size:', 'photo-gallery'); ?> </label></td> 4752 4752 <td> 4753 <input type="text" name="tags_but_see_all_size" id="tags_but_see_all_size" value="<?php echo $row->tags_but_see_all_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4753 <input type="text" name="tags_but_see_all_size" id="tags_but_see_all_size" value="<?php echo esc_attr($row->tags_but_see_all_size); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4754 4754 </td> 4755 4755 </tr> 4756 4756 <tr> 4757 4757 <td class="spider_label"><label for="tags_but_see_all_color"><?php echo __('See All Button Font color:', 'photo-gallery'); ?> </label></td> 4758 <td><input type="text" name="tags_but_see_all_color" id="tags_but_see_all_color" value="<?php echo $row->tags_but_see_all_color; ?>" class="jscolor"/></td>4758 <td><input type="text" name="tags_but_see_all_color" id="tags_but_see_all_color" value="<?php echo esc_attr($row->tags_but_see_all_color); ?>" class="jscolor"/></td> 4759 4759 </tr> 4760 4760 <tr> 4761 4761 <td class="spider_label"><label for="tags_but_see_all_back_color"><?php echo __('See All Button background color:', 'photo-gallery'); ?> </label></td> 4762 <td><input type="text" name="tags_but_see_all_back_color" id="tags_but_see_all_back_color" value="<?php echo $row->tags_but_see_all_back_color; ?>" class="jscolor" /></td>4762 <td><input type="text" name="tags_but_see_all_back_color" id="tags_but_see_all_back_color" value="<?php echo esc_attr($row->tags_but_see_all_back_color); ?>" class="jscolor" /></td> 4763 4763 </tr> 4764 4764 <tr> 4765 4765 <td class="spider_label"><label for="tags_but_see_all_border_w"><?php echo __('See All Button Border width:', 'photo-gallery'); ?> </label></td> 4766 4766 <td> 4767 <input type="text" name="tags_but_see_all_border_w" id="tags_but_see_all_border_w" value="<?php echo $row->tags_but_see_all_border_w; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px4767 <input type="text" name="tags_but_see_all_border_w" id="tags_but_see_all_border_w" value="<?php echo esc_attr($row->tags_but_see_all_border_w); ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px 4768 4768 </td> 4769 4769 </tr> … … 4773 4773 <select name="tags_but_see_all_border_s" id="tags_but_see_all_border_s"> 4774 4774 <?php foreach ($border_styles as $key => $border_style) { ?> 4775 <option value="<?php echo $key; ?>" <?php echo (($row->tags_but_see_all_border_s == $key) ? 'selected="selected"' : ''); ?>><?php echo__($border_style, 'photo-gallery'); ?></option>4775 <option value="<?php echo esc_attr($key); ?>" <?php echo (($row->tags_but_see_all_border_s == $key) ? 'selected="selected"' : ''); ?>><?php echo esc_html__($border_style, 'photo-gallery'); ?></option> 4776 4776 <?php } ?> 4777 4777 </select> … … 4780 4780 <tr> 4781 4781 <td class="spider_label"><label for="tags_but_see_all_border_c"><?php echo __('See All Button Border color:', 'photo-gallery'); ?></label></td> 4782 <td><input type="text" name="tags_but_see_all_border_c" id="tags_but_see_all_border_c" value="<?php echo $row->tags_but_see_all_border_c; ?>" class="jscolor"/></td>4782 <td><input type="text" name="tags_but_see_all_border_c" id="tags_but_see_all_border_c" value="<?php echo esc_attr($row->tags_but_see_all_border_c); ?>" class="jscolor"/></td> 4783 4783 </tr> 4784 4784 <tr> 4785 4785 <td class="spider_label"><label for="tags_but_see_all_border_r"><?php echo __('See All Button Border radius:', 'photo-gallery'); ?> </label></td> 4786 4786 <td> 4787 <input type="text" name="tags_but_see_all_border_r" id="tags_but_see_all_border_r" value="<?php echo $row->tags_but_see_all_border_r; ?>" class="spider_char_input"/>4787 <input type="text" name="tags_but_see_all_border_r" id="tags_but_see_all_border_r" value="<?php echo esc_attr($row->tags_but_see_all_border_r); ?>" class="spider_char_input"/> 4788 4788 <div class="spider_description"><?php echo __('Use CSS type values.', 'photo-gallery'); ?></div> 4789 4789 </td> … … 4799 4799 </fieldset> 4800 4800 </div> 4801 <input type="hidden" id="default_theme" name="default_theme" value="<?php echo $row->default_theme; ?>" />4802 <input type="hidden" id="active_tab" name="active_tab" value="<?php echo $params['active_tab']; ?>" />4801 <input type="hidden" id="default_theme" name="default_theme" value="<?php echo esc_attr($row->default_theme); ?>" /> 4802 <input type="hidden" id="active_tab" name="active_tab" value="<?php echo esc_attr($params['active_tab']); ?>" /> 4803 4803 <?php 4804 4804 } -
photo-gallery/trunk/frontend/views/BWGViewAlbum_compact_preview.php
r3149367 r3180567 236 236 background-color:rgba(<?php echo esc_html($thumb_bg_color['red']) .','. esc_html($thumb_bg_color['green']) . ',' . esc_html($thumb_bg_color['blue']) . ', '.number_format($theme_row->album_compact_thumb_bg_transparency / 100, 2, ".", ""); ?>); 237 237 border: <?php echo esc_html($theme_row->album_compact_thumb_border_width); ?>px <?php echo esc_html($theme_row->album_compact_thumb_border_style); ?> #<?php echo esc_html($theme_row->album_compact_thumb_border_color); ?>; 238 opacity: <?php echo number_format( $theme_row->album_compact_thumb_transparent/ 100, 2, ".", ""); ?>;238 opacity: <?php echo number_format(floatval($theme_row->album_compact_thumb_transparent) / 100, 2, ".", ""); ?>; 239 239 border-radius: <?php echo esc_html($theme_row->album_compact_thumb_border_radius); ?>; 240 240 box-shadow: <?php echo esc_html($theme_row->album_compact_thumb_box_shadow); ?>; -
photo-gallery/trunk/frontend/views/BWGViewBlog_style.php
r2837469 r3180567 482 482 max-width: 100%; 483 483 <?php if ( !empty($params['watermark_opacity']) ) { ?> 484 opacity: <?php echo number_format( $params['watermark_opacity']/ 100, 2, ".", ""); ?>;484 opacity: <?php echo number_format(floatval($params['watermark_opacity']) / 100, 2, ".", ""); ?>; 485 485 <?php } ?> 486 486 position: relative; -
photo-gallery/trunk/frontend/views/BWGViewGalleryBox.php
r3058445 r3180567 175 175 } 176 176 .bwg_popup_image { 177 max-width: <?php echo esc_html( $params['popup_width'] - ($filmstrip_direction == 'vertical' ? $image_filmstrip_width: 0)); ?>px;178 max-height: <?php echo esc_html( $params['popup_height'] - ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height: 0)); ?>px;177 max-width: <?php echo esc_html(floatval($params['popup_width']) - ($filmstrip_direction == 'vertical' ? floatval($image_filmstrip_width) : 0)); ?>px; 178 max-height: <?php echo esc_html(floatval($params['popup_height']) - ($filmstrip_direction == 'horizontal' ? floatval($image_filmstrip_height) : 0)); ?>px; 179 179 } 180 180 .bwg_ctrl_btn { … … 182 182 font-size: <?php echo esc_html($theme_row->lightbox_ctrl_btn_height); ?>px; 183 183 margin: <?php echo esc_html($theme_row->lightbox_ctrl_btn_margin_top); ?>px <?php echo esc_html($theme_row->lightbox_ctrl_btn_margin_left); ?>px; 184 opacity: <?php echo number_format( $theme_row->lightbox_ctrl_btn_transparent/ 100, 2, ".", ""); ?>;184 opacity: <?php echo number_format(floatval($theme_row->lightbox_ctrl_btn_transparent) / 100, 2, ".", ""); ?>; 185 185 } 186 186 .bwg_toggle_btn { 187 187 color: #<?php echo esc_html($theme_row->lightbox_ctrl_btn_color); ?>; 188 188 font-size: <?php echo esc_html($theme_row->lightbox_toggle_btn_height); ?>px; 189 opacity: <?php echo number_format( $theme_row->lightbox_ctrl_btn_transparent/ 100, 2, ".", ""); ?>;189 opacity: <?php echo number_format(floatval($theme_row->lightbox_ctrl_btn_transparent) / 100, 2, ".", ""); ?>; 190 190 } 191 191 .bwg_ctrl_btn_container { … … 216 216 border-bottom-left-radius: <?php echo esc_html($theme_row->lightbox_ctrl_cont_border_radius); ?>px; 217 217 border-bottom-right-radius: <?php echo esc_html($theme_row->lightbox_ctrl_cont_border_radius); ?>px; 218 /*top: <?php echo esc_html( $theme_row->lightbox_ctrl_btn_height + 2 * $theme_row->lightbox_ctrl_btn_margin_top); ?>px;*/218 /*top: <?php echo esc_html(floatval($theme_row->lightbox_ctrl_btn_height) + 2 * floatval($theme_row->lightbox_ctrl_btn_margin_top)); ?>px;*/ 219 219 <?php 220 220 } … … 223 223 border-top-left-radius: <?php echo esc_html($theme_row->lightbox_ctrl_cont_border_radius); ?>px; 224 224 border-top-right-radius: <?php echo esc_html($theme_row->lightbox_ctrl_cont_border_radius); ?>px; 225 /*bottom: <?php echo esc_html( $theme_row->lightbox_ctrl_btn_height + 2 * $theme_row->lightbox_ctrl_btn_margin_top); ?>px;*/225 /*bottom: <?php echo esc_html(floatval($theme_row->lightbox_ctrl_btn_height) + 2 * floatval($theme_row->lightbox_ctrl_btn_margin_top)); ?>px;*/ 226 226 <?php 227 227 }?> 228 margin-left: -<?php echo esc_html( $theme_row->lightbox_toggle_btn_width) / 2; ?>px;229 opacity: <?php echo number_format( $theme_row->lightbox_ctrl_cont_transparent/ 100, 2, ".", ""); ?>;228 margin-left: -<?php echo esc_html(floatval($theme_row->lightbox_toggle_btn_width)) / 2; ?>px; 229 opacity: <?php echo number_format(floatval($theme_row->lightbox_ctrl_cont_transparent) / 100, 2, ".", ""); ?>; 230 230 width: <?php echo esc_html($theme_row->lightbox_toggle_btn_width); ?>px; 231 231 } 232 232 .bwg_close_btn { 233 opacity: <?php echo number_format( $theme_row->lightbox_close_btn_transparent/ 100, 2, ".", ""); ?>;233 opacity: <?php echo number_format(floatval($theme_row->lightbox_close_btn_transparent) / 100, 2, ".", ""); ?>; 234 234 } 235 235 .spider_popup_close { … … 259 259 font-size: <?php echo esc_html($theme_row->lightbox_rl_btn_size); ?>px; 260 260 width: <?php echo esc_html($theme_row->lightbox_rl_btn_width); ?>px; 261 opacity: <?php echo number_format( $theme_row->lightbox_rl_btn_transparent/ 100, 2, ".", ""); ?>;261 opacity: <?php echo number_format(floatval($theme_row->lightbox_rl_btn_transparent) / 100, 2, ".", ""); ?>; 262 262 } 263 263 #spider_popup_left-ico { 264 padding-right: <?php echo esc_html(( $theme_row->lightbox_rl_btn_width - $theme_row->lightbox_rl_btn_size)) / 3; ?>px;264 padding-right: <?php echo esc_html((floatval($theme_row->lightbox_rl_btn_width) - floatval($theme_row->lightbox_rl_btn_size))) / 3; ?>px; 265 265 } 266 266 #spider_popup_right-ico { 267 padding-left: <?php echo esc_html(( $theme_row->lightbox_rl_btn_width - $theme_row->lightbox_rl_btn_size)) / 3; ?>px;267 padding-left: <?php echo esc_html((floatval($theme_row->lightbox_rl_btn_width) - floatval($theme_row->lightbox_rl_btn_size))) / 3; ?>px; 268 268 } 269 269 <?php … … 299 299 font-size: <?php echo esc_html($theme_row->lightbox_comment_font_size); ?>px; 300 300 font-family: <?php echo esc_html($theme_row->lightbox_comment_font_style); ?>; 301 <?php echo esc_html($theme_row->lightbox_comment_pos); ?>: -<?php echo esc_html($theme_row->lightbox_comment_width); ?>px;301 <?php echo esc_html($theme_row->lightbox_comment_pos); ?>: -<?php echo floatval($theme_row->lightbox_comment_width); ?>px; 302 302 width: <?php echo esc_html($theme_row->lightbox_comment_width); ?>px; 303 303 } … … 409 409 .bwg_filmstrip { 410 410 <?php echo esc_html($left_or_top); ?>: <?php echo esc_html($theme_row->lightbox_filmstrip_rl_btn_size); ?>px; 411 <?php echo esc_html($width_or_height); ?>: <?php echo esc_html(($filmstrip_direction == 'horizontal' ? $params['popup_width'] - 40 : $params['popup_height']- 40)); ?>px;411 <?php echo esc_html($width_or_height); ?>: <?php echo esc_html(($filmstrip_direction == 'horizontal' ? floatval($params['popup_width']) - 40 : floatval($params['popup_height']) - 40)); ?>px; 412 412 } 413 413 .bwg_filmstrip_thumbnails { 414 height: <?php echo esc_html(($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : ( $image_filmstrip_height + $filmstrip_thumb_right_left_space) * count($image_rows))); ?>px;414 height: <?php echo esc_html(($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : (floatval($image_filmstrip_height) + floatval($filmstrip_thumb_right_left_space)) * count($image_rows))); ?>px; 415 415 <?php echo esc_html($left_or_top); ?>: 0px; 416 width: <?php echo esc_html(($filmstrip_direction == 'horizontal' ? ( $image_filmstrip_width + $filmstrip_thumb_right_left_space) * count($image_rows) : $image_filmstrip_width)); ?>px;416 width: <?php echo esc_html(($filmstrip_direction == 'horizontal' ? (floatval($image_filmstrip_width) + floatval($filmstrip_thumb_right_left_space)) * count($image_rows) : $image_filmstrip_width)); ?>px; 417 417 } 418 418 .bwg_filmstrip_thumbnail { … … 431 431 } 432 432 .bwg_thumb_deactive { 433 opacity: <?php echo number_format( $theme_row->lightbox_filmstrip_thumb_deactive_transparent/ 100, 2, ".", ""); ?>;433 opacity: <?php echo number_format(floatval($theme_row->lightbox_filmstrip_thumb_deactive_transparent) / 100, 2, ".", ""); ?>; 434 434 } 435 435 .bwg_filmstrip_left { … … 471 471 font-family: <?php echo esc_html($params['watermark_font']); ?>; 472 472 color: #<?php echo esc_html($params['watermark_color']); ?> !important; 473 opacity: <?php echo number_format( $params['watermark_opacity']/ 100, 2, ".", ""); ?>;473 opacity: <?php echo number_format(floatval($params['watermark_opacity']) / 100, 2, ".", ""); ?>; 474 474 } 475 475 .bwg_image_info_container1 { … … 491 491 border: <?php echo esc_html($theme_row->lightbox_hit_border_width); ?>px <?php echo esc_html($theme_row->lightbox_hit_border_style); ?> #<?php echo esc_html($theme_row->lightbox_hit_border_color); ?>; 492 492 border-radius: <?php echo esc_html($theme_row->lightbox_info_border_radius); ?>; 493 <?php echo ($theme_row->lightbox_ctrl_btn_pos == 'bottom' && $theme_row->lightbox_hit_pos == 'bottom') ? 'bottom: ' . esc_html(( $theme_row->lightbox_ctrl_btn_height + 2 * $theme_row->lightbox_ctrl_btn_margin_top)) . 'px;' : '' ?>493 <?php echo ($theme_row->lightbox_ctrl_btn_pos == 'bottom' && $theme_row->lightbox_hit_pos == 'bottom') ? 'bottom: ' . esc_html((floatval($theme_row->lightbox_ctrl_btn_height) + 2 * floatval($theme_row->lightbox_ctrl_btn_margin_top))) . 'px;' : '' ?> 494 494 margin: <?php echo esc_html($theme_row->lightbox_hit_margin); ?>; 495 495 padding: <?php echo esc_html($theme_row->lightbox_hit_padding); ?>; 496 <?php echo ($theme_row->lightbox_ctrl_btn_pos == 'top' && $theme_row->lightbox_hit_pos == 'top') ? 'top: ' . esc_html(( $theme_row->lightbox_ctrl_btn_height + 2 * $theme_row->lightbox_ctrl_btn_margin_top)) . 'px;' : '' ?>496 <?php echo ($theme_row->lightbox_ctrl_btn_pos == 'top' && $theme_row->lightbox_hit_pos == 'top') ? 'top: ' . esc_html((floatval($theme_row->lightbox_ctrl_btn_height) + 2 * floatval($theme_row->lightbox_ctrl_btn_margin_top))) . 'px;' : '' ?> 497 497 } 498 498 .bwg_image_hits, … … 504 504 } 505 505 .bwg_image_info { 506 background: rgba(<?php echo esc_html($rgb_bwg_image_info_bg_color['red']); ?>, <?php echo esc_html($rgb_bwg_image_info_bg_color['green']); ?>, <?php echo esc_html($rgb_bwg_image_info_bg_color['blue']); ?>, <?php echo number_format( $theme_row->lightbox_info_bg_transparent/ 100, 2, ".", ""); ?>);506 background: rgba(<?php echo esc_html($rgb_bwg_image_info_bg_color['red']); ?>, <?php echo esc_html($rgb_bwg_image_info_bg_color['green']); ?>, <?php echo esc_html($rgb_bwg_image_info_bg_color['blue']); ?>, <?php echo number_format(floatval($theme_row->lightbox_info_bg_transparent) / 100, 2, ".", ""); ?>); 507 507 border: <?php echo esc_html($theme_row->lightbox_info_border_width); ?>px <?php echo esc_html($theme_row->lightbox_info_border_style); ?> #<?php echo esc_html($theme_row->lightbox_info_border_color); ?>; 508 508 border-radius: <?php echo esc_html($theme_row->lightbox_info_border_radius); ?>; 509 <?php echo ((!$params['popup_enable_filmstrip'] || $theme_row->lightbox_filmstrip_pos != 'bottom') && $theme_row->lightbox_ctrl_btn_pos == 'bottom' && $theme_row->lightbox_info_pos == 'bottom') ? 'bottom: ' . esc_html(( $theme_row->lightbox_ctrl_btn_height + 2 * $theme_row->lightbox_ctrl_btn_margin_top) . 'px;') : '' ?>509 <?php echo ((!$params['popup_enable_filmstrip'] || $theme_row->lightbox_filmstrip_pos != 'bottom') && $theme_row->lightbox_ctrl_btn_pos == 'bottom' && $theme_row->lightbox_info_pos == 'bottom') ? 'bottom: ' . esc_html((floatval($theme_row->lightbox_ctrl_btn_height) + 2 * floatval($theme_row->lightbox_ctrl_btn_margin_top)) . 'px;') : '' ?> 510 510 <?php if ($params['popup_info_full_width']) { ?> 511 511 width: 100%; … … 515 515 <?php } ?> 516 516 padding: <?php echo esc_html($theme_row->lightbox_info_padding); ?>; 517 <?php echo esc_html(((!$params['popup_enable_filmstrip'] || $theme_row->lightbox_filmstrip_pos != 'top') && $theme_row->lightbox_ctrl_btn_pos == 'top' && $theme_row->lightbox_info_pos == 'top') ? 'top: ' . ( $theme_row->lightbox_ctrl_btn_height + 2 * $theme_row->lightbox_ctrl_btn_margin_top) . 'px;' : ''); ?>517 <?php echo esc_html(((!$params['popup_enable_filmstrip'] || $theme_row->lightbox_filmstrip_pos != 'top') && $theme_row->lightbox_ctrl_btn_pos == 'top' && $theme_row->lightbox_info_pos == 'top') ? 'top: ' . (floatval($theme_row->lightbox_ctrl_btn_height) + 2 * floatval($theme_row->lightbox_ctrl_btn_margin_top)) . 'px;' : ''); ?> 518 518 word-break : break-word; 519 519 } … … 539 539 } 540 540 .bwg_image_rate { 541 <?php echo esc_html(($theme_row->lightbox_ctrl_btn_pos == 'bottom' && $theme_row->lightbox_rate_pos == 'bottom') ? 'bottom: ' . ( $theme_row->lightbox_ctrl_btn_height + 2 * $theme_row->lightbox_ctrl_btn_margin_top) . 'px;' : ''); ?>541 <?php echo esc_html(($theme_row->lightbox_ctrl_btn_pos == 'bottom' && $theme_row->lightbox_rate_pos == 'bottom') ? 'bottom: ' . (floatval($theme_row->lightbox_ctrl_btn_height) + 2 * floatval($theme_row->lightbox_ctrl_btn_margin_top)) . 'px;' : ''); ?> 542 542 padding: <?php echo esc_html($theme_row->lightbox_rate_padding); ?>; 543 <?php echo esc_html(($theme_row->lightbox_ctrl_btn_pos == 'top' && $theme_row->lightbox_rate_pos == 'top') ? 'top: ' . ( $theme_row->lightbox_ctrl_btn_height + 2 * $theme_row->lightbox_ctrl_btn_margin_top) . 'px;' : ''); ?>543 <?php echo esc_html(($theme_row->lightbox_ctrl_btn_pos == 'top' && $theme_row->lightbox_rate_pos == 'top') ? 'top: ' . (floatval($theme_row->lightbox_ctrl_btn_height) + 2 * floatval($theme_row->lightbox_ctrl_btn_margin_top)) . 'px;' : ''); ?> 544 544 } 545 545 #bwg_rate_form .bwg_hint, -
photo-gallery/trunk/frontend/views/BWGViewImage_browser.php
r2750908 r3180567 314 314 font-family: <?php echo esc_html($params['watermark_font']); ?>; 315 315 color: #<?php echo esc_html($params['watermark_color']); ?> !important; 316 opacity: <?php echo number_format( $params['watermark_opacity']/ 100, 2, ".", ""); ?>;316 opacity: <?php echo number_format(floatval($params['watermark_opacity']) / 100, 2, ".", ""); ?>; 317 317 text-decoration: none; 318 318 position: relative; … … 373 373 font-family: <?php echo esc_html($params['watermark_font']); ?>; 374 374 color: #<?php echo esc_html($params['watermark_color']); ?> !important; 375 opacity: <?php echo number_format( $params['watermark_opacity']/ 100, 2, ".", ""); ?>;375 opacity: <?php echo number_format(floatval($params['watermark_opacity']) / 100, 2, ".", ""); ?>; 376 376 position: relative; 377 377 z-index: 10141; … … 404 404 z-index: 10140; 405 405 width: <?php echo esc_html($params['watermark_width']);?>px; 406 max-width: <?php echo esc_html((( $params['watermark_width']) /($params['image_browser_width'])) * 100); ?>%;406 max-width: <?php echo esc_html(((floatval($params['watermark_width'])) / floatval($params['image_browser_width'])) * 100); ?>%; 407 407 margin: 10px 10px 10px 10px ; 408 408 } … … 417 417 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg_image_browser_watermark_img_<?php echo esc_attr($bwg); ?>{ 418 418 max-width: 100%; 419 opacity: <?php echo number_format( $params['watermark_opacity']/ 100, 2, ".", ""); ?>;419 opacity: <?php echo number_format(floatval($params['watermark_opacity']) / 100, 2, ".", ""); ?>; 420 420 position: relative; 421 421 z-index: 10141; -
photo-gallery/trunk/frontend/views/BWGViewSlideshow.php
r2879187 r3180567 642 642 } 643 643 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg_slideshow_image_<?php echo esc_attr($bwg); ?> { 644 max-width: <?php echo esc_html( $image_width - ($filmstrip_direction == 'vertical' ? $slideshow_filmstrip_width: 0)); ?>px;645 max-height: <?php echo esc_html( $image_height - ($filmstrip_direction == 'horizontal' ? $slideshow_filmstrip_height: 0)); ?>px;644 max-width: <?php echo esc_html(floatval($image_width) - ($filmstrip_direction == 'vertical' ? floatval($slideshow_filmstrip_width) : 0)); ?>px; 645 max-height: <?php echo esc_html(floatval($image_height) - ($filmstrip_direction == 'horizontal' ? floatval($slideshow_filmstrip_height) : 0)); ?>px; 646 646 } 647 647 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg_slideshow_embed_<?php echo esc_attr($bwg); ?> { 648 width: <?php echo esc_html( $image_width - ($filmstrip_direction == 'vertical' ? $slideshow_filmstrip_width: 0)); ?>px;649 height: <?php echo esc_html( $image_height - ($filmstrip_direction == 'horizontal' ? $slideshow_filmstrip_height: 0)); ?>px;648 width: <?php echo esc_html(floatval($image_width) - ($filmstrip_direction == 'vertical' ? floatval($slideshow_filmstrip_width) : 0)); ?>px; 649 height: <?php echo esc_html(floatval($image_height) - ($filmstrip_direction == 'horizontal' ? floatval($slideshow_filmstrip_height) : 0)); ?>px; 650 650 } 651 651 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> #bwg_slideshow_play_pause_<?php echo esc_attr($bwg); ?> { … … 673 673 font-size: <?php echo esc_html($theme_row->slideshow_rl_btn_size); ?>px; 674 674 width: <?php echo esc_html($theme_row->slideshow_rl_btn_width); ?>px; 675 opacity: <?php echo number_format( $theme_row->slideshow_close_btn_transparent/ 100, 2, ".", ""); ?>;675 opacity: <?php echo number_format(floatval($theme_row->slideshow_close_btn_transparent) / 100, 2, ".", ""); ?>; 676 676 } 677 677 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> #spider_slideshow_left-ico_<?php echo esc_attr($bwg); ?>:hover, … … 716 716 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg_slideshow_filmstrip_<?php echo esc_attr($bwg); ?> { 717 717 <?php echo esc_html($left_or_top); ?>: 20px; 718 <?php echo esc_html($width_or_height); ?>: <?php echo esc_html(($filmstrip_direction == 'horizontal' ? $image_width - 40 : $image_height- 40)); ?>px;718 <?php echo esc_html($width_or_height); ?>: <?php echo esc_html(($filmstrip_direction == 'horizontal' ? floatval($image_width) - 40 : floatval($image_height) - 40)); ?>px; 719 719 /*z-index: 10106;*/ 720 720 } 721 721 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg_slideshow_filmstrip_thumbnails_<?php echo esc_attr($bwg); ?> { 722 722 <?php echo esc_html($left_or_top); ?>: 0px; 723 width: <?php echo esc_html(($filmstrip_direction == 'horizontal' ? ( $slideshow_filmstrip_width + $filmstrip_thumb_margin_hor) * count($image_rows) : $slideshow_filmstrip_width)); ?>px;724 height: <?php echo esc_html(($filmstrip_direction == 'horizontal' ? $slideshow_filmstrip_height : ($slideshow_filmstrip_height + $filmstrip_thumb_margin_hor) * count($image_rows))); ?>px;723 width: <?php echo esc_html(($filmstrip_direction == 'horizontal' ? (floatval($slideshow_filmstrip_width) + floatval($filmstrip_thumb_margin_hor)) * count($image_rows) : floatval($slideshow_filmstrip_width))); ?>px; 724 height: <?php echo esc_html(($filmstrip_direction == 'horizontal' ? floatval($slideshow_filmstrip_height) : (floatval($slideshow_filmstrip_height) + floatval($filmstrip_thumb_margin_hor)) * count($image_rows))); ?>px; 725 725 } 726 726 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg_slideshow_filmstrip_thumbnail_<?php echo esc_attr($bwg); ?> { … … 735 735 } 736 736 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg_slideshow_thumb_deactive_<?php echo esc_attr($bwg); ?> { 737 opacity: <?php echo number_format( $theme_row->slideshow_filmstrip_thumb_deactive_transparent/ 100, 2, ".", ""); ?>;737 opacity: <?php echo number_format(floatval($theme_row->slideshow_filmstrip_thumb_deactive_transparent) / 100, 2, ".", ""); ?>; 738 738 } 739 739 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg_slideshow_filmstrip_left_<?php echo esc_attr($bwg); ?>, … … 804 804 max-height: <?php echo esc_html($watermark_height); ?>px; 805 805 max-width: <?php echo esc_html($watermark_width); ?>px; 806 opacity: <?php echo number_format( $watermark_opacity/ 100, 2, ".", ""); ?>;806 opacity: <?php echo number_format(floatval($watermark_opacity) / 100, 2, ".", ""); ?>; 807 807 } 808 808 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg_slideshow_watermark_text_<?php echo esc_attr($bwg); ?>, … … 826 826 margin: 5px; 827 827 <?php } ?> 828 <?php if (!$slideshow_filmstrip_type && $slideshow_title_position[0] == $theme_row->slideshow_filmstrip_pos) echo esc_html($theme_row->slideshow_filmstrip_pos) . ':' . ( $theme_row->slideshow_dots_height+ 4) . 'px;'; ?>828 <?php if (!$slideshow_filmstrip_type && $slideshow_title_position[0] == $theme_row->slideshow_filmstrip_pos) echo esc_html($theme_row->slideshow_filmstrip_pos) . ':' . (floatval($theme_row->slideshow_dots_height) + 4) . 'px;'; ?> 829 829 } 830 830 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg_slideshow_description_text_<?php echo esc_attr($bwg); ?> { … … 854 854 } 855 855 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg_slideshow_dots_thumbnails_<?php echo esc_attr($bwg); ?> { 856 height: <?php echo esc_html(( $theme_row->slideshow_dots_height + $theme_row->slideshow_dots_margin* 2)); ?>px;857 width: <?php echo esc_html(( $theme_row->slideshow_dots_width + $theme_row->slideshow_dots_margin* 2) * count($image_rows)); ?>px;856 height: <?php echo esc_html((floatval($theme_row->slideshow_dots_height) + floatval($theme_row->slideshow_dots_margin) * 2)); ?>px; 857 width: <?php echo esc_html((floatval($theme_row->slideshow_dots_width) + floatval($theme_row->slideshow_dots_margin) * 2) * count($image_rows)); ?>px; 858 858 } 859 859 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg_slideshow_dots_active_<?php echo esc_attr($bwg); ?> { -
photo-gallery/trunk/frontend/views/BWGViewThumbnails.php
r3149367 r3180567 118 118 ?> 119 119 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg-container-<?php echo esc_attr($bwg); ?>.bwg-standard-thumbnails { 120 width: <?php echo esc_html(( $params['image_column_number'] * $params['thumb_width']) + ($theme_row->container_margin ? $theme_row->thumb_margin: 0)); ?>px;120 width: <?php echo esc_html((floatval($params['image_column_number']) * floatval($params['thumb_width'])) + ($theme_row->container_margin ? floatval($theme_row->thumb_margin) : 0)); ?>px; 121 121 <?php 122 122 if ( $theme_row->thumb_align == 'center' ) { … … 151 151 ?> 152 152 margin-right: -<?php echo esc_html($theme_row->thumb_margin); ?>px; 153 max-width: calc(100% + <?php echo esc_html($theme_row->thumb_margin); ?>px);153 max-width: calc(100% + <?php echo floatval($theme_row->thumb_margin); ?>px); 154 154 <?php 155 155 } … … 181 181 background-color:rgba(<?php echo esc_html($thumb_bg_color['red'] .','. $thumb_bg_color['green'] . ',' . $thumb_bg_color['blue'] . ', '.number_format($theme_row->thumb_bg_transparency / 100, 2, ".", "")); ?>); 182 182 border: <?php echo esc_html($theme_row->thumb_border_width); ?>px <?php echo esc_html($theme_row->thumb_border_style); ?> #<?php echo esc_html($theme_row->thumb_border_color); ?>; 183 opacity: <?php echo number_format( $theme_row->thumb_transparent/ 100, 2, ".", ""); ?>;183 opacity: <?php echo number_format(floatval($theme_row->thumb_transparent) / 100, 2, ".", ""); ?>; 184 184 border-radius: <?php echo esc_html($theme_row->thumb_border_radius); ?>; 185 185 box-shadow: <?php echo esc_html($theme_row->thumb_box_shadow); ?>; … … 230 230 ?> 231 231 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg-container-<?php echo esc_attr($bwg); ?>.bwg-standard-thumbnails .bwg-item1 { 232 padding-top: <?php echo esc_html( $params['thumb_height'] / $params['thumb_width']* 100); ?>%;232 padding-top: <?php echo esc_html(floatval($params['thumb_height']) / floatval($params['thumb_width']) * 100); ?>%; 233 233 } 234 234 <?php … … 268 268 } 269 269 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg-container-<?php echo esc_attr($bwg); ?>.bwg-standard-thumbnails .bwg-play-icon2 { 270 font-size: <?php echo esc_html(2 * $theme_row->thumb_title_font_size); ?>px;270 font-size: <?php echo esc_html(2 * floatval($theme_row->thumb_title_font_size)); ?>px; 271 271 } 272 272 #bwg_container1_<?php echo esc_attr($bwg); ?> #bwg_container2_<?php echo esc_attr($bwg); ?> .bwg-container-<?php echo esc_attr($bwg); ?>.bwg-standard-thumbnails .bwg-ecommerce2 { 273 font-size: <?php echo esc_html(1.2 * $theme_row->thumb_title_font_size); ?>px;273 font-size: <?php echo esc_html(1.2 * floatval($theme_row->thumb_title_font_size)); ?>px; 274 274 color: #<?php echo esc_html(( $params['ecommerce_icon'] == 'hover') ? (isset($theme_row->thumb_title_font_color_hover) ? $theme_row->thumb_title_font_color_hover : $theme_row->thumb_title_font_color) : $theme_row->thumb_title_font_color); ?>; 275 275 } -
photo-gallery/trunk/frontend/views/BWGViewThumbnails_masonry.php
r3149367 r3180567 153 153 vertical-align: middle; 154 154 <?php if ( $params['masonry_hor_ver'] == 'vertical' ) { ?> 155 width: <?php echo esc_html(BWG()->options->resizable_thumbnails ? '100% !important;' : $params['thumb_width']. 'px'); ?>;155 width: <?php echo esc_html(BWG()->options->resizable_thumbnails ? '100% !important;' : floatval($params['thumb_width']) . 'px'); ?>; 156 156 <?php } 157 157 else { ?> 158 height: <?php echo esc_html( $params['thumb_height'] - $theme_row->masonry_thumb_padding); ?>px;158 height: <?php echo esc_html(floatval($params['thumb_height']) - floatval($theme_row->masonry_thumb_padding)); ?>px; 159 159 <?php } ?> 160 160 margin: 0; 161 opacity: <?php echo number_format( $theme_row->masonry_thumb_transparent/ 100, 2, ".", ""); ?>;161 opacity: <?php echo number_format(floatval($theme_row->masonry_thumb_transparent) / 100, 2, ".", ""); ?>; 162 162 } 163 163 … … 186 186 background-color:rgba(<?php echo esc_html($thumb_bg_color['red'] .','. $thumb_bg_color['green'] . ',' . $thumb_bg_color['blue'] . ', '.number_format($theme_row->masonry_thumb_bg_transparency / 100, 2, ".", "")); ?>); 187 187 border: <?php echo esc_html($theme_row->masonry_thumb_border_width); ?>px <?php echo esc_html($theme_row->masonry_thumb_border_style); ?> #<?php echo esc_html($theme_row->masonry_thumb_border_color); ?>; 188 opacity: <?php echo esc_html(number_format( $theme_row->masonry_thumb_transparent/ 100, 2, ".", "")); ?>;188 opacity: <?php echo esc_html(number_format(floatval($theme_row->masonry_thumb_transparent) / 100, 2, ".", "")); ?>; 189 189 border-radius: <?php echo esc_html($theme_row->masonry_thumb_border_radius); ?>; 190 190 } … … 273 273 font-size: 0; 274 274 <?php if ( $params['masonry_hor_ver'] == 'vertical' ) { ?> 275 width: <?php echo esc_html( $params['image_column_number'] * $params['thumb_width'] + ($theme_row->masonry_container_margin ? $theme_row->masonry_thumb_padding: 0)); ?>px;275 width: <?php echo esc_html(floatval($params['image_column_number']) * floatval($params['thumb_width']) + ($theme_row->masonry_container_margin ? floatval($theme_row->masonry_thumb_padding) : 0)); ?>px; 276 276 max-width: 100%; 277 277 <?php 278 278 } 279 279 else { ?> 280 height: <?php echo esc_html( $params['image_column_number'] * $params['thumb_height']); ?>px !important;280 height: <?php echo esc_html(floatval($params['image_column_number']) * floatval($params['thumb_height'])); ?>px !important; 281 281 <?php 282 282 } … … 287 287 else { ?> 288 288 margin-right: -<?php echo esc_html($theme_row->masonry_thumb_padding); ?>px; 289 max-width: calc(100% + <?php echo esc_html( $theme_row->masonry_thumb_padding); ?>px);289 max-width: calc(100% + <?php echo esc_html(floatval($theme_row->masonry_thumb_padding)); ?>px); 290 290 <?php } ?> 291 291 <?php if ( $theme_row->masonry_thumb_align == 'center' ) { ?> -
photo-gallery/trunk/frontend/views/BWGViewThumbnails_mosaic.php
r2764916 r3180567 209 209 box-sizing: content-box !important; 210 210 margin: 0; 211 opacity: <?php echo number_format( $theme_row->mosaic_thumb_transparent/ 100, 2, ".", ""); ?>;211 opacity: <?php echo number_format(floatval($theme_row->mosaic_thumb_transparent) / 100, 2, ".", ""); ?>; 212 212 } 213 213 … … 321 321 .bwg_mosaic_play_icon_<?php echo esc_attr($bwg); ?> { 322 322 color: #<?php echo esc_html($theme_row->mosaic_thumb_title_font_color); ?>; 323 font-size: <?php echo esc_html(2 * $theme_row->mosaic_thumb_title_font_size); ?>px;323 font-size: <?php echo esc_html(2 * floatval($theme_row->mosaic_thumb_title_font_size)); ?>px; 324 324 vertical-align: middle; 325 325 display: table-cell !important; -
photo-gallery/trunk/frontend/views/BWGViewWidget.php
r2869484 r3180567 8 8 9 9 public function view_tags($params = array()) { 10 $current_url = isset($_SERVER['REQUEST_URI']) ? sanitize_url($_SERVER['REQUEST_URI']) : '';10 $current_url = isset($_SERVER['REQUEST_URI']) ? esc_url($_SERVER['REQUEST_URI']) : ''; 11 11 $type = isset($params["type"]) ? $params["type"] : 'text'; 12 12 $bwg = isset($params["bwg"]) ? $params["bwg"] : 0; -
photo-gallery/trunk/photo-gallery.php
r3171538 r3180567 4 4 * Plugin URI: https://10web.io/plugins/wordpress-photo-gallery/?utm_source=photo_gallery&utm_medium=free_plugin 5 5 * Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags. 6 * Version: 1.8.3 06 * Version: 1.8.31 7 7 * Author: Photo Gallery Team 8 8 * Author URI: https://10web.io/plugins/?utm_source=photo_gallery&utm_medium=free_plugin … … 109 109 $this->front_url = $this->plugin_url; 110 110 $this->main_file = plugin_basename(__FILE__); 111 $this->plugin_version = '1.8.3 0';112 $this->db_version = '1.8.3 0';111 $this->plugin_version = '1.8.31'; 112 $this->db_version = '1.8.31'; 113 113 $this->prefix = 'bwg'; 114 114 $this->nicename = __('Photo Gallery', 'photo-gallery'); -
photo-gallery/trunk/readme.txt
r3171538 r3180567 4 4 Requires at least: 4.6 5 5 Tested up to: 6.6 6 Stable tag: 1.8.3 06 Stable tag: 1.8.31 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 273 273 274 274 == Changelog == 275 276 = 1.8.31 = 277 * Fixed: Security fix. 275 278 276 279 = 1.8.30 = -
photo-gallery/trunk/wd/includes/notices.php
r2766883 r3180567 91 91 <p class="wd-notice-body">' . $admin_display_msg . '</p> 92 92 <ul class="wd-notice-body wd-blue">' . $admin_display_link . '</ul> 93 <a href="' . $query_str. '" class="dashicons dashicons-dismiss"></a>93 <a href="' . esc_url($query_str) . '" class="dashicons dashicons-dismiss"></a> 94 94 </div>'; 95 95 } … … 100 100 ' . $admin_display_link . ' 101 101 </ul>'; 102 echo '<a href="' . $query_str. '" class="dashicons dashicons-dismiss close-promo"></a>';102 echo '<a href="' . esc_url($query_str) . '" class="dashicons dashicons-dismiss close-promo"></a>'; 103 103 echo '</div>'; 104 104 }
Note: See TracChangeset
for help on using the changeset viewer.