Bug #278 ยป shaper.inc-typos.diff
shaper.inc 2010-01-05 00:06:04.409742523 -0600 | ||
---|---|---|
964 | 964 |
if (!empty($q['description'])) |
965 | 965 |
$this->SetDescription($q['description']); |
966 | 966 |
else |
967 |
$this->SetDescritption("");
|
|
967 |
$this->SetDescription(""); |
|
968 | 968 |
if (!empty($q['red'])) |
969 | 969 |
$this->SetRed($q['red']); |
970 | 970 |
else |
... | ... | |
2677 | 2677 |
return $this->description; |
2678 | 2678 |
} |
2679 | 2679 |
function SetDescription($str) { |
2680 |
$this->descritpion = trim($str);
|
|
2680 |
$this->description = trim($str);
|
|
2681 | 2681 |
} |
2682 | 2682 |
function GetFirstime() { |
2683 | 2683 |
return $this->firsttime; |
... | ... | |
3095 | 3095 |
$this->SetMask($q['mask']); |
3096 | 3096 |
if (isset($q['weight']) && $q['weight'] <> "") |
3097 | 3097 |
$this->SetWeight($q['weight']); |
3098 |
if (isset($q['descritption']) && $q['description'] <> "")
|
|
3098 |
if (isset($q['description']) && $q['description'] <> "") |
|
3099 | 3099 |
$this->SetDescription($q['description']); |
3100 | 3100 |
$this->SetEnabled($q['enabled']); |
3101 | 3101 |
} |