Skip to content
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.

Fix Travis CI Build Errors #896

Merged
merged 2 commits into from
Sep 30, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions library/navigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -218,12 +218,12 @@ function foundationpress_breadcrumb( $showhome = true, $separatorclass = false )

// 404 page
echo '<li>Error 404</li>';
}
} // End if().
} else {
if ( $showhome ) {
echo '<li class="item-home current">' . $home_title . '</li>';
}
}
} // End if().
echo '</ul>';
}
}
} // End if().
6 changes: 3 additions & 3 deletions library/protocol-relative-theme-assets.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
* @since FoundationPress 1.1.0
*/

if ( ! class_exists( 'Foundationpress_protocol_relative_theme_assets' ) ) :
class Foundationpress_protocol_relative_theme_assets {
if ( ! class_exists( 'Foundationpress_Protocol_Relative_Theme_Assets' ) ) :
class Foundationpress_Protocol_Relative_Theme_Assets {
/**
* Plugin URI: https://github.com/ryanjbonnell/Protocol-Relative-Theme-Assets
* Description: Transforms enqueued CSS and JavaScript theme URLs to use protocol-relative paths.
Expand Down Expand Up @@ -86,5 +86,5 @@ public function stylesheet_directory_uri( $stylesheet_dir_uri, $stylesheet, $the
}
}

$foundationpress_protocol_relative_theme_assets = new Foundationpress_protocol_relative_theme_assets;
$foundationpress_protocol_relative_theme_assets = new Foundationpress_Protocol_Relative_Theme_Assets;
endif;