Skip to content

Commit

Permalink
Fixing some commenting alignments
Browse files Browse the repository at this point in the history
  • Loading branch information
colegeissinger committed May 26, 2014
1 parent 8bf89e7 commit f01e15d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions includes/class-wiki-wiki-routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ public static function template_redirect() {
if ( 'resources' === $wp->request ) {
$template_file_name = self::$allowed_files['home'];

// Serve up the taxonomy page template
// Serve up the taxonomy page template
} elseif ( isset( $wp->query_vars['wiki-wiki'] ) && false !== strpos( $wp->query_vars['wiki-wiki'], 'category' ) ) {
$template_file_name = self::$allowed_files['category'];

// Serve up the new wiki page screen so we can create a new wiki post
// Serve up the new wiki page screen so we can create a new wiki post
} elseif ( isset( $wp->query_vars['name'] ) && 'add-wiki' === $wp->query_vars['name'] ) {
$template_file_name = self::$allowed_files['add-wiki'];

// Other wise we'll serve the singular page layout
// Other wise we'll serve the singular page layout
} else {
$template_file_name = self::$allowed_files['single'];
}
Expand Down

0 comments on commit f01e15d

Please sign in to comment.