aboutsummaryrefslogtreecommitdiff
path: root/views/installation
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-02 01:19:33 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-02 01:19:33 +0000
commit89ded32abebd0f2100e0014249df54bde7a44258 (patch)
tree81c542c9d101a75002a2cc3aed4e2de7e2eda9c5 /views/installation
parent6ed8d3f7c8b98f73ac461a7a45798b8f1ffb173b (diff)
downloadelgg-89ded32abebd0f2100e0014249df54bde7a44258.tar.gz
elgg-89ded32abebd0f2100e0014249df54bde7a44258.tar.bz2
Refs #2700 changed underscores to hyphens for the forms css elements
git-svn-id: http://code.elgg.org/elgg/trunk@7492 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/installation')
-rw-r--r--views/installation/input/access.php2
-rw-r--r--views/installation/input/button.php2
-rw-r--r--views/installation/input/longtext.php2
-rw-r--r--views/installation/input/password.php2
-rw-r--r--views/installation/input/text.php2
5 files changed, 5 insertions, 5 deletions
diff --git a/views/installation/input/access.php b/views/installation/input/access.php
index 01ce69b80..51b8dfa00 100644
--- a/views/installation/input/access.php
+++ b/views/installation/input/access.php
@@ -16,7 +16,7 @@ if (isset($vars['class'])) {
$class = $vars['class'];
}
if (!$class) {
- $class = "input_access";
+ $class = "input-access";
}
if ((!isset($vars['options'])) || (!is_array($vars['options']))) {
diff --git a/views/installation/input/button.php b/views/installation/input/button.php
index 1b70800e9..759752c8c 100644
--- a/views/installation/input/button.php
+++ b/views/installation/input/button.php
@@ -19,7 +19,7 @@ global $CONFIG;
$class = $vars['class'];
if (!$class) {
- $class = "submit_button";
+ $class = "submit-button";
}
if (isset($vars['type'])) {
diff --git a/views/installation/input/longtext.php b/views/installation/input/longtext.php
index 766cd68e4..c7e465e9f 100644
--- a/views/installation/input/longtext.php
+++ b/views/installation/input/longtext.php
@@ -14,7 +14,7 @@
$class = $vars['class'];
if (!$class) {
- $class = "input_textarea";
+ $class = "input-textarea";
}
?>
diff --git a/views/installation/input/password.php b/views/installation/input/password.php
index 34578a1e2..541728ee3 100644
--- a/views/installation/input/password.php
+++ b/views/installation/input/password.php
@@ -14,7 +14,7 @@
$class = $vars['class'];
if (!$class) {
- $class = "input_password";
+ $class = "input-password";
}
?>
diff --git a/views/installation/input/text.php b/views/installation/input/text.php
index c8ce7266e..73801dcf7 100644
--- a/views/installation/input/text.php
+++ b/views/installation/input/text.php
@@ -17,7 +17,7 @@
$class = $vars['class'];
if (!$class) {
- $class = "input_text";
+ $class = "input-text";
}
?>