Skip to content

Commit 8cc378a

Browse files
committed
Fix wrong class name
1 parent 7fe142f commit 8cc378a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

website/app/controllers/IndexController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function indexAction()
2323
fwrite($fd, "<?php" . self::NL . self::NL);
2424

2525
// Begin class
26-
fwrite($fd, "class {$tablename}Form extends phalconCSSFormNone {" . self::NL);
26+
fwrite($fd, "class {$tablename}Form extends phalconCSSFormBootstrap {" . self::NL);
2727

2828

2929
$columns = $connection->describeColumns($table);

website/app/forms/UserStatusForm.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
class UserStatusForm extends phalconCSSFormNone {
3+
class UserStatusForm extends phalconCSSFormBootstrap {
44
private function _Name() {
55
$element = new \Phalcon\Forms\Element\Text("Name");
66
$element->setLabel("Name");

website/app/forms/phalconCSSFormBootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
class phalconCSSFormNone extends \Phalcon\Forms\Form {
3+
class phalconCSSFormBootstrap extends \Phalcon\Forms\Form {
44

55
private $_method = "post";
66
private $_enctype = false;

0 commit comments

Comments
 (0)