Changeset 247
- Timestamp:
- 04/06/08 22:45:15 (9 months ago)
- Files:
-
- trunk/Framework/Module/Forwards.php (modified) (1 diff)
- trunk/Framework/Module/Responders.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Framework/Module/Forwards.php
r224 r247 90 90 $aliases[$count]['name'] = $forwardName; 91 91 $aliases[$count]['contents'] = $this->user->getAliasContents($val); 92 $aliases[$count]['edit_url'] = htmlspecialchars(" $base_url?module=Forwards&domain={$this->domain}&forward=$forwardName&event=modifyForward");93 $aliases[$count]['delete_url'] = htmlspecialchars(" $base_url?module=Forwards&domain={$this->domain}&forward=$forwardName&event=deleteForward");92 $aliases[$count]['edit_url'] = htmlspecialchars("./?module=Forwards&domain={$this->domain}&forward=$forwardName&event=modifyForward"); 93 $aliases[$count]['delete_url'] = htmlspecialchars("./?module=Forwards&domain={$this->domain}&forward=$forwardName&event=deleteForward"); 94 94 $count++; 95 95 } trunk/Framework/Module/Responders.php
r195 r247 20 20 * @license GPL 2.0 {@link http://www.gnu.org/licenses/gpl.txt} 21 21 */ 22 class Framework_Module_Responders extends ToasterAdmin_ Common22 class Framework_Module_Responders extends ToasterAdmin_Auth_Domain 23 23 { 24 24 … … 33 33 function __construct() { 34 34 parent::__construct(); 35 // Make they have access36 if (($result = $this->noDomainPrivs())) {37 return $result;38 }39 35 // Make sure doamin was supplied 40 36 if (($result = $this->noDomainSupplied())) {
