Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix coding standards errors.
  • Loading branch information
markstory committed Jul 27, 2012
1 parent 6e0cf0d commit f963e37
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 deletions.
14 changes: 5 additions & 9 deletions app/Config/Schema/i18n.php
@@ -1,11 +1,5 @@
<?php
/**
* This is i18n Schema file
*
* Use it to configure database for i18n
*
* PHP 5
*
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
*
Expand All @@ -19,13 +13,15 @@
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

/*
/**
*
* Using the Schema command line utility
* cake schema run create i18n
*
* Use it to configure database for i18n
*
* cake schema run create i18n
*/
class i18nSchema extends CakeSchema {
class I18nSchema extends CakeSchema {

public $name = 'i18n';

Expand Down
2 changes: 1 addition & 1 deletion app/webroot/index.php
Expand Up @@ -72,7 +72,7 @@

// for built-in server
if (php_sapi_name() == 'cli-server') {
$_SERVER['PHP_SELF'] = '/'.basename(__FILE__);
$_SERVER['PHP_SELF'] = '/' . basename(__FILE__);
}

if (!defined('CAKE_CORE_INCLUDE_PATH')) {
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Console/Templates/skel/webroot/index.php
Expand Up @@ -74,7 +74,7 @@

// for built-in server
if (php_sapi_name() == 'cli-server') {
$_SERVER['PHP_SELF'] = '/'.basename(__FILE__);
$_SERVER['PHP_SELF'] = '/' . basename(__FILE__);
}

if (!defined('CAKE_CORE_INCLUDE_PATH')) {
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Utility/ValidationTest.php
Expand Up @@ -1785,7 +1785,7 @@ public function testUrl() {
$this->assertTrue(Validation::url('http://underscore_subdomain.example.org'));
$this->assertTrue(Validation::url('http://_jabber._tcp.gmail.com'));
$this->assertFalse(Validation::url('http://www.underscore_domain.org'));
$this->assertFalse(Validation::url('http://_jabber._tcp.g_mail.com'));
$this->assertFalse(Validation::url('http://_jabber._tcp.g_mail.com'));

$this->assertTrue(Validation::url('http://example.com/~userdir/subdir/index.html'));
$this->assertTrue(Validation::url('http://www.zwischenraume.de'));
Expand Down

0 comments on commit f963e37

Please sign in to comment.