This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MySQL [plop]> create table test (str varchar(255), str2 text); | |
Query OK, 0 rows affected (0.18 sec) | |
MySQL [plop]> insert into test (str, str2) values ('plop', 'plop2'); | |
Query OK, 1 row affected (0.00 sec) | |
MySQL [plop]> select * from test; | |
+------+-------+ | |
| str | str2 | | |
+------+-------+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$object = new stdClass(); | |
$object->{'property'} = 'value 1'; | |
$object->{'42'} = 'value 2'; | |
$array = (array)$object; | |
var_dump($array); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/asset.module b/asset.module | |
index a39f07f..6eaa645 100644 | |
--- a/asset.module | |
+++ b/asset.module | |
@@ -320,28 +320,30 @@ function asset_menu() { | |
'file' => 'includes/asset.admin.inc', | |
); | |
- $items['admin/assets/get'] = array( | |
+ $items['admin/assets/tag/%/%/%'] = array( |
NewerOlder