Code Duplication    Length = 10-12 lines in 3 locations

geodirectory-functions/general_functions.php 3 locations

@@ 3299-3308 (lines=10) @@
3296
3297
			}
3298
3299
			if ( $addlisting_links != '' ) { ?>
3300
3301
				<li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
3302
				            option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
3303
				            data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>">
3304
						<option value="" disabled="disabled" selected="selected"
3305
						        style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option>
3306
						<?php echo $addlisting_links; ?>
3307
					</select></li> <?php
3308
3309
			}
3310
3311
		}
@@ 3347-3358 (lines=12) @@
3344
				}
3345
			}
3346
3347
			if ( $favourite_links != '' ) {
3348
				?>
3349
				<li>
3350
					<select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3351
					        option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
3352
					        data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>">
3353
						<option value="" disabled="disabled" selected="selected"
3354
						        style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option>
3355
						<?php echo $favourite_links; ?>
3356
					</select>
3357
				</li>
3358
				<?php
3359
			}
3360
		}
3361
@@ 3394-3405 (lines=12) @@
3391
				}
3392
			}
3393
3394
			if ( $listing_links != '' ) {
3395
				?>
3396
				<li>
3397
					<select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3398
					        option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
3399
					        data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>">
3400
						<option value="" disabled="disabled" selected="selected"
3401
						        style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option>
3402
						<?php echo $listing_links; ?>
3403
					</select>
3404
				</li>
3405
				<?php
3406
			}
3407
		}
3408