We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc2c345 commit e88a064Copy full SHA for e88a064
2 files changed
bin/docker-functions
@@ -21,7 +21,7 @@ run_phantomjs() {
21
echo "Starting PhantomJS container..."
22
docker run --name phantomjs \
23
--link "wordpress$version":wordpress \
24
- -d phantomjs
+ --detach=false phantomjs
25
}
26
27
run_wordpress() {
src/class-tiny-wp-base.php
@@ -55,7 +55,7 @@ public static function plugin_version() {
55
56
57
public static function plugin_identification() {
58
- return 'Wordpress/' . self::wp_version() . ' Tiny/' . self::plugin_version();
+ return 'Wordpress/' . self::wp_version() . ' PHP/' . PHP_VERSION . ' Tiny/' . self::plugin_version();
59
60
61
protected static function get_prefixed_name($name) {
0 commit comments