Skip to content
This repository was archived by the owner on Oct 30, 2021. It is now read-only.

Commit 0674e46

Browse files
committed
Resolving issues #3, undefined variable $contenttype used in mobile themes
1 parent 20f8539 commit 0674e46

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

layouts/mobile-offline.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<!DOCTYPE html>
1212
<html>
1313
<head>
14-
<meta http-equiv="Content-Type" content="<?php echo $contenttype; ?>; charset=utf-8" />
14+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
1515
<link rel="stylesheet" href="<?php echo $baseUrl.'templates/'.$this->template; ?>/css/mobile.css" type="text/css" media="screen" />
1616
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css" />
1717
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>

layouts/mobile.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<!DOCTYPE html>
1212
<html>
1313
<head>
14-
<meta http-equiv="Content-Type" content="<?php echo $contenttype; ?>; charset=utf-8" />
14+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
1515
<link rel="stylesheet" href="<?php echo $baseUrl.'templates/'.$this->template; ?>/css/mobile.css" type="text/css" media="screen" />
1616
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css" />
1717
<?php //Load Mobile Extended Template Style Overrides

mobile-offline.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<!DOCTYPE html>
2323
<html>
2424
<head>
25-
<meta http-equiv="Content-Type" content="<?php echo $contenttype; ?>; charset=utf-8" />
25+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
2626
<link rel="stylesheet" href="<?php echo $baseUrl.'templates/'.$this->template; ?>/css/mobile.css" type="text/css" media="screen" />
2727
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css" />
2828
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>

mobile.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<!DOCTYPE html>
2525
<html>
2626
<head>
27-
<meta http-equiv="Content-Type" content="<?php echo $contenttype; ?>; charset=utf-8" />
27+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
2828
<link rel="stylesheet" href="<?php echo $baseUrl.'templates/'.$this->template; ?>/css/mobile.css" type="text/css" media="screen" />
2929
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css" />
3030
<?php //Load Mobile Extended Template Style Overrides

0 commit comments

Comments
 (0)