Changeset 229 for trunk/trax/vendor
- Timestamp:
- 07/18/06 05:20:04 (6 years ago)
- Location:
- trunk/trax/vendor/trax
- Files:
-
- 2 modified
-
action_controller.php (modified) (1 diff)
-
action_view/helpers/javascript_helper.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/action_controller.php
r228 r229 415 415 416 416 # current url 417 $browser_url = $_SERVER['REDIRECT_URL']; 417 if(isset($_SERVER['REDIRECT_URL'])) { 418 $browser_url = $_SERVER['REDIRECT_URL']; 419 } else { 420 $browser_url = $_SERVER['REQUEST_URI']; 421 } 418 422 #if(strstr($_SERVER['REQUEST_URI'], "?")) 419 423 # $browser_url = substr($_SERVER['REQUEST_URI'], 0, strpos($_SERVER['REQUEST_URI'], "?")); -
trunk/trax/vendor/trax/action_view/helpers/javascript_helper.php
r199 r229 282 282 $options['html']['name'] = $name; 283 283 $options['html']['value'] = $value; 284 $this->tag("input", $options['html']);284 return $this->tag("input", $options['html']); 285 285 } 286 286
