Code Duplication    Length = 10-12 lines in 3 locations

geodirectory-functions/general_functions.php 3 locations

@@ 3326-3335 (lines=10) @@
3323
3324
			}
3325
3326
			if ( $addlisting_links != '' ) { ?>
3327
3328
				<li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
3329
				            option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
3330
				            data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>">
3331
						<option value="" disabled="disabled" selected="selected"
3332
						        style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option>
3333
						<?php echo $addlisting_links; ?>
3334
					</select></li> <?php
3335
3336
			}
3337
3338
		}
@@ 3374-3385 (lines=12) @@
3371
				}
3372
			}
3373
3374
			if ( $favourite_links != '' ) {
3375
				?>
3376
				<li>
3377
					<select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3378
					        option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
3379
					        data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>">
3380
						<option value="" disabled="disabled" selected="selected"
3381
						        style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option>
3382
						<?php echo $favourite_links; ?>
3383
					</select>
3384
				</li>
3385
				<?php
3386
			}
3387
		}
3388
@@ 3421-3432 (lines=12) @@
3418
				}
3419
			}
3420
3421
			if ( $listing_links != '' ) {
3422
				?>
3423
				<li>
3424
					<select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3425
					        option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
3426
					        data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>">
3427
						<option value="" disabled="disabled" selected="selected"
3428
						        style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option>
3429
						<?php echo $listing_links; ?>
3430
					</select>
3431
				</li>
3432
				<?php
3433
			}
3434
		}
3435