Removing the closing PHP "?>" tag as per style guidelines.
This commit is contained in:
parent
286e75bef0
commit
ab3f9850e4
25 changed files with 26 additions and 26 deletions
|
@ -115,4 +115,4 @@ class BaseThemelet {
|
||||||
.'<br><< '.$pages_html.' >>';
|
.'<br><< '.$pages_html.' >>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -71,4 +71,4 @@ class NavBlock extends Block {
|
||||||
parent::__construct("Navigation", "<a href='".make_link()."'>Index</a>", "left", 0);
|
parent::__construct("Navigation", "<a href='".make_link()."'>Index</a>", "left", 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -224,4 +224,4 @@ class MockConfig extends HardcodeConfig {
|
||||||
parent::__construct($config);
|
parent::__construct($config);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -553,4 +553,4 @@ class MockDatabase extends Database {
|
||||||
public function create_table($name, $def) {}
|
public function create_table($name, $def) {}
|
||||||
public function connect_engine() {}
|
public function connect_engine() {}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -116,4 +116,4 @@ Copyright (C) <a href="'.$this->sitedomain.'">'.$this->sitename.'</a><br />
|
||||||
return $sent;
|
return $sent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -265,4 +265,4 @@ class LogEvent extends Event {
|
||||||
$this->time = time();
|
$this->time = time();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -8,4 +8,4 @@ class SCoreException extends Exception {}
|
||||||
* A fairly common, generic exception
|
* A fairly common, generic exception
|
||||||
*/
|
*/
|
||||||
class PermissionDeniedException extends SCoreException {}
|
class PermissionDeniedException extends SCoreException {}
|
||||||
?>
|
|
||||||
|
|
|
@ -231,4 +231,4 @@ abstract class DataHandlerExtension extends Extension {
|
||||||
abstract protected function create_image_from_data($filename, $metadata);
|
abstract protected function create_image_from_data($filename, $metadata);
|
||||||
abstract protected function create_thumb($hash);
|
abstract protected function create_thumb($hash);
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -1143,4 +1143,4 @@ function get_thumbnail_size(/*int*/ $orig_width, /*int*/ $orig_height) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
|
||||||
|
|
|
@ -46,4 +46,5 @@ _d("EXTRA_EXTS", ""); // optional extra extensions
|
||||||
*/
|
*/
|
||||||
_d("SCORE_VERSION", 's2hack/'.VERSION); // string SCore version
|
_d("SCORE_VERSION", 's2hack/'.VERSION); // string SCore version
|
||||||
_d("ENABLED_EXTS", CORE_EXTS.",".EXTRA_EXTS);
|
_d("ENABLED_EXTS", CORE_EXTS.",".EXTRA_EXTS);
|
||||||
?>
|
|
||||||
|
|
||||||
|
|
|
@ -218,4 +218,4 @@ class MockUser extends User {
|
||||||
parent::__construct($row);
|
parent::__construct($row);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -164,4 +164,4 @@ new UserClass("hellbanned", "user", array(
|
||||||
));
|
));
|
||||||
|
|
||||||
@include_once "data/config/user-classes.conf.php";
|
@include_once "data/config/user-classes.conf.php";
|
||||||
?>
|
|
||||||
|
|
|
@ -1461,4 +1461,4 @@ function _end_coverage() {
|
||||||
file_put_contents("$absolute_path/$t.$n.log", gzdeflate(serialize(xdebug_get_code_coverage())));
|
file_put_contents("$absolute_path/$t.$n.log", gzdeflate(serialize(xdebug_get_code_coverage())));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -276,4 +276,4 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
|
||||||
|
|
|
@ -296,4 +296,4 @@ class CommentListTheme extends Themelet {
|
||||||
';
|
';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -388,4 +388,4 @@ class Upload extends Extension {
|
||||||
}
|
}
|
||||||
// }}}
|
// }}}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -39,4 +39,4 @@ class UploadTest extends ShimmieWebTestCase {
|
||||||
$this->log_out();
|
$this->log_out();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -319,4 +319,4 @@ class UploadTheme extends Themelet {
|
||||||
";
|
";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -121,4 +121,4 @@ class CustomCommentListTheme extends CommentListTheme {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -9,4 +9,3 @@ class CustomCommentListTheme extends CommentListTheme {
|
||||||
return $this->rr(parent::build_postbox($image_id));
|
return $this->rr(parent::build_postbox($image_id));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -6,4 +6,4 @@ class CustomPage extends Page {
|
||||||
$this->left_enabled = false;
|
$this->left_enabled = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -34,4 +34,4 @@ class CustomSetupTheme extends SetupTheme {
|
||||||
return $this->rr($html);
|
return $this->rr($html);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -66,4 +66,4 @@ class Themelet extends BaseThemelet {
|
||||||
</div>";
|
</div>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -96,4 +96,4 @@ class CustomUserPageTheme extends UserPageTheme {
|
||||||
parent::display_user_page($duser, $stats);
|
parent::display_user_page($duser, $stats);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -55,4 +55,4 @@ class CustomViewImageTheme extends ViewImageTheme {
|
||||||
return $html;
|
return $html;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
Reference in a new issue