Making WordPress.org

Ticket #1671: 1671.2.patch

File 1671.2.patch, 483 bytes (added by DrewAPicture, 10 years ago)

function_exists()

  • searchform.php

     
    3434<?php } ?>
    3535
    3636        <?php
    37                 $is_handbook = wporg_is_handbook();
     37                $is_handbook = function_exists( 'wporg_is_handbook' ) ? wporg_is_handbook() : false;
    3838                $search_url  = $is_handbook ? wporg_get_current_handbook_home_url() : home_url( '/' );
    3939                $form_class  = $is_handbook ? ' searchform-handbook' : '';
    4040        ?>