Skip to content

Commit

Permalink
Fix issues with hybrid.php caused by the merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Tadlock committed Aug 6, 2013
1 parent dca458f commit 9f32ae2
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions hybrid.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* You should have received a copy of the GNU General Public License along with this program; if not, write
* to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* @package HybridCore
* @package HybridCore
* @version 1.6.0
* @author Justin Tadlock <justin@justintadlock.com>
* @copyright Copyright (c) 2008 - 2013, Justin Tadlock
Expand Down Expand Up @@ -92,9 +92,9 @@ function __construct() {
*/
function constants() {

/* Sets the framework version number. */
/* Sets the framework version number. */
define( 'HYBRID_VERSION', '1.6.0' );


/* Sets the path to the parent theme directory. */
define( 'THEME_DIR', get_template_directory() );

Expand Down Expand Up @@ -241,16 +241,16 @@ function functions() {

/* Load the metadata functions. */
require_once( trailingslashit( HYBRID_FUNCTIONS ) . 'meta.php' );

/* Load the template functions. */
require_once( trailingslashit( HYBRID_FUNCTIONS ) . 'template.php' );


/* Load the utility functions. */
require_once( trailingslashit( HYBRID_FUNCTIONS ) . 'utility.php' );

/* Load the wish-list functions. */
require_once( trailingslashit( HYBRID_FUNCTIONS ) . 'wish-list.php' );


/* Load the theme settings functions if supported. */
require_if_theme_supports( 'hybrid-core-theme-settings', trailingslashit( HYBRID_FUNCTIONS ) . 'settings.php' );

Expand Down Expand Up @@ -280,13 +280,13 @@ function functions() {

/* Load the scripts if supported. */
require_if_theme_supports( 'hybrid-core-scripts', trailingslashit( HYBRID_FUNCTIONS ) . 'scripts.php' );

/* Load the media grabber script if supported. */
require_if_theme_supports( 'hybrid-core-media-grabber', trailingslashit( HYBRID_CLASSES ) . 'hybrid-media-grabber.php' );

/* Load the post format functionality if post formats are supported. */
require_if_theme_supports( 'post-formats', trailingslashit( HYBRID_FUNCTIONS ) . 'post-formats.php' );


/* Load the deprecated functions if supported. */
require_if_theme_supports( 'hybrid-core-deprecated', trailingslashit( HYBRID_FUNCTIONS ) . 'deprecated.php' );
}
Expand Down Expand Up @@ -333,12 +333,12 @@ function extensions() {

/* Load the Random Custom Background extension if supported. */
require_if_theme_supports( 'random-custom-background', trailingslashit( HYBRID_EXTENSIONS ) . 'random-custom-background.php' );

/* Load the Color Palette extension if supported. */
require_if_theme_supports( 'color-palette', trailingslashit( HYBRID_EXTENSIONS ) . 'color-palette.php' );

/* Load the Theme Fonts extension if supported. */
require_if_theme_supports( 'theme-fonts', trailingslashit( HYBRID_EXTENSIONS ) . 'theme-fonts.php' );
require_if_theme_supports( 'post-formats', trailingslashit( HYBRID_EXTENSIONS ) . 'post-format-tools.php' );
}

/**
Expand Down Expand Up @@ -383,3 +383,4 @@ function default_filters() {
}
}

?>

0 comments on commit 9f32ae2

Please sign in to comment.