Skip to content

Commit f642d34

Browse files
committed
code formatting / adding php5.6 tests
1 parent 400f1d5 commit f642d34

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
language: php
22

33
php:
4+
- '5.6'
45
- '5.5'
56
- '5.4'
67

comments.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
<?php
22
/**
33
* Comment form
4-
*
5-
* @package multiloquent\template_parts
64
* this is a direct lift of the comments from shoestrap;
75
* I personally use disqus for my comments, but this comment system was already done :D
86
* http://shoestrap.org/
7+
*
8+
* @package multiloquent\template_parts
99
*/
1010

1111
/**
1212
* Comment template part.
13-
*
1413
*/
1514
if (post_password_required()) {
1615
return;

functions.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?php
22
/**
33
* functions and definitions
4-
*
54
* Set up the theme and provides some helper functions, which are used in the
65
* theme as custom template tags. Others are attached to action and filter
76
* hooks in WordPress to change core functionality.
8-
*
97
* When using a child theme you can override certain functions (those wrapped
108
* in a function_exists() call) by defining them first in your child theme's
119
* functions.php file. The child theme's functions.php file is included before
@@ -26,5 +24,4 @@
2624
/**
2725
* multiloquent functions file.
2826
*/
29-
require_once (trailingslashit(get_template_directory()) . 'multiloquent-base.php');
30-
27+
require_once(trailingslashit(get_template_directory()) . 'multiloquent-base.php');

single.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
}
3636
remove_filter('the_content', 'sharing_display', 19);
3737
remove_filter('the_excerpt', 'sharing_display', 19);
38-
the_content('<p class="serif">' . 'Read the rest of this page' . ' &raquo;</p>');
38+
the_content('<p class="serif">Read the rest of this page &raquo;</p>');
3939
wp_link_pages('<p><strong>Pages:</strong>', '</p>', 'number');
4040
require(locate_template('advert.php'));
4141
?>

0 commit comments

Comments
 (0)