22.03.2016, 22:27
It isn't that hard. You just have to close the end bracket of case DIALOG_GENDER before case DIALOG_AGE and not after it.
You have this:
While it should be this:
You have this:
PHP код:
case DIALOG_GENDER: {
// Code
case DIALOG_AGE: {
// Code
}
}
PHP код:
case DIALOG_GENDER: {
// Code
}
case DIALOG_AGE: {
// Code
}